diff --git a/frontend/src/imgs/logo.png b/frontend/public/img/logo.png similarity index 100% rename from frontend/src/imgs/logo.png rename to frontend/public/img/logo.png diff --git a/frontend/src/imgs/logo_with_text.png b/frontend/public/img/logo_with_text.png similarity index 100% rename from frontend/src/imgs/logo_with_text.png rename to frontend/public/img/logo_with_text.png diff --git a/frontend/public/index.html b/frontend/public/index.html index 14eb4009..1ee57cf7 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -2,15 +2,8 @@ - - - - - - - - + @@ -34,10 +27,6 @@ - SMILE Dashboard diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 028dffa5..64b428e2 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -3,11 +3,12 @@ import { Routes, Route } from "react-router-dom"; import RequestsPage from "./pages/requests/RequestsPage"; import PatientsPage from "./pages/patients/PatientsPage"; import SamplesPage from "./pages/samples/SamplesPage"; +import CohortsPage from "./pages/cohorts/CohortsPage"; import LoginSuccessPage from "./pages/auth/LoginSuccessPage"; import SmileNavBar from "./shared/components/SmileNavBar"; import { getUserEmail } from "./utils/getUserEmail"; -function App() { +export default function App() { const [userEmail, setUserEmail] = useState(null); useEffect(() => { @@ -34,11 +35,12 @@ function App() { } /> + }> + + } /> ); } - -export default App; diff --git a/frontend/src/components/RecordsList.tsx b/frontend/src/components/RecordsList.tsx index f9448a38..b522a38e 100644 --- a/frontend/src/components/RecordsList.tsx +++ b/frontend/src/components/RecordsList.tsx @@ -1,6 +1,6 @@ import AutoSizer from "react-virtualized-auto-sizer"; import { Button, Container, Modal } from "react-bootstrap"; -import { FunctionComponent, useMemo } from "react"; +import { Dispatch, SetStateAction, useMemo } from "react"; import { useNavigate } from "react-router-dom"; import { DownloadModal } from "./DownloadModal"; import { CSVFormulate } from "../utils/CSVExport"; @@ -11,58 +11,66 @@ import "ag-grid-community/styles/ag-grid.css"; import "ag-grid-community/styles/ag-theme-alpine.css"; import "ag-grid-enterprise"; import { ColDef, IServerSideGetRowsParams } from "ag-grid-community"; -import { useHookGeneric } from "../shared/types"; -import { SamplesList } from "./SamplesList"; -import { SampleWhere } from "../generated/graphql"; -import { defaultRecordsColDef } from "../shared/helpers"; +import { DataName, useHookLazyGeneric } from "../shared/types"; +import SamplesList from "./SamplesList"; +import { Sample, SampleWhere } from "../generated/graphql"; +import { defaultReadOnlyColDef } from "../shared/helpers"; import { PatientIdsTriplet } from "../pages/patients/PatientsPage"; import { ErrorMessage, LoadingSpinner, Toolbar } from "../shared/tableElements"; -export interface IRecordsListProps { - lazyRecordsQuery: typeof useHookGeneric; - nodeName: string; - totalCountNodeName: string; - pageRoute: string; - searchTerm: string; +interface IRecordsListProps { colDefs: ColDef[]; - conditionBuilder: (uniqueQueries: string[]) => Record[]; - sampleQueryParamValue: string | undefined; - sampleQueryParamFieldName: string; - searchVariables: SampleWhere; - customFilterUI?: JSX.Element; - setCustomFilterVals?: (vals: PatientIdsTriplet[]) => void; - searchVal: string[]; - setSearchVal: (val: string[]) => void; + dataName: DataName; + nodeName?: string; + lazyRecordsQuery: typeof useHookLazyGeneric; + lazyRecordsQueryAddlVariables?: Record; + queryFilterWhereVariables: ( + parsedSearchVals: string[] + ) => Record[]; + userSearchVal: string; + setUserSearchVal: Dispatch>; + parsedSearchVals: string[]; + setParsedSearchVals: Dispatch>; handleSearch: () => void; - inputVal: string; - setInputVal: (val: string) => void; showDownloadModal: boolean; - setShowDownloadModal: (val: boolean) => void; + setShowDownloadModal: Dispatch>; handleDownload: () => void; + samplesQueryParam: string | undefined; + samplesDefaultColDef: ColDef; + getSamplesRowData: (samples: Sample[]) => any[]; + samplesColDefs: ColDef[]; + samplesParentWhereVariables: SampleWhere; + samplesRefetchWhereVariables: ( + samplesParsedSearchVals: string[] + ) => SampleWhere; + setCustomSearchVals?: Dispatch>; + customToolbarUI?: JSX.Element; } -const RecordsList: FunctionComponent = ({ - lazyRecordsQuery, - nodeName, - totalCountNodeName, - pageRoute, - searchTerm, +export default function RecordsList({ colDefs, - conditionBuilder, - sampleQueryParamValue, - sampleQueryParamFieldName, - searchVariables, - customFilterUI, - setCustomFilterVals, - searchVal, - setSearchVal, + dataName, + nodeName = dataName, + lazyRecordsQuery, + lazyRecordsQueryAddlVariables, + queryFilterWhereVariables, + userSearchVal, + setUserSearchVal, + parsedSearchVals, + setParsedSearchVals, handleSearch, - inputVal, - setInputVal, showDownloadModal, setShowDownloadModal, handleDownload, -}) => { + samplesQueryParam, + samplesDefaultColDef, + getSamplesRowData, + samplesColDefs, + samplesParentWhereVariables, + samplesRefetchWhereVariables, + customToolbarUI, + setCustomSearchVals, +}: IRecordsListProps) { const [showClosingWarning, setShowClosingWarning] = useState(false); const [unsavedChanges, setUnsavedChanges] = useState(false); const navigate = useNavigate(); @@ -73,19 +81,22 @@ const RecordsList: FunctionComponent = ({ lazyRecordsQuery({ variables: { options: { limit: 20, offset: 0 }, + ...lazyRecordsQueryAddlVariables, }, }); + const totalCountNodeName = `${nodeName}Connection`; + const datasource = useMemo(() => { return { // called by the grid when more rows are required getRows: (params: IServerSideGetRowsParams) => { const fetchInput = { where: { - OR: conditionBuilder(searchVal), + OR: queryFilterWhereVariables(parsedSearchVals), }, [`${nodeName}ConnectionWhere2`]: { - OR: conditionBuilder(searchVal), + OR: queryFilterWhereVariables(parsedSearchVals), }, options: { offset: params.request.startRow, @@ -114,7 +125,7 @@ const RecordsList: FunctionComponent = ({ }, }; // eslint-disable-next-line react-hooks/exhaustive-deps - }, [searchVal]); + }, [parsedSearchVals]); if (loading) return ; @@ -126,7 +137,7 @@ const RecordsList: FunctionComponent = ({ if (unsavedChanges) { setShowClosingWarning(true); } else { - navigate(pageRoute); + navigate(`/${dataName}`); } }; @@ -138,7 +149,7 @@ const RecordsList: FunctionComponent = ({ return fetchMore({ variables: { where: { - OR: conditionBuilder(searchVal), + OR: queryFilterWhereVariables(parsedSearchVals), }, options: { offset: 0, @@ -183,7 +194,7 @@ const RecordsList: FunctionComponent = ({ onClick={() => { setShowClosingWarning(false); setUnsavedChanges(false); - navigate(pageRoute); + navigate(`/${dataName}`); }} > Continue Exiting @@ -192,22 +203,23 @@ const RecordsList: FunctionComponent = ({ )} - {sampleQueryParamValue && ( + {samplesQueryParam && ( {({ height, width }) => ( - {`Viewing ${sampleQueryParamValue}`} + {`Viewing ${samplesQueryParam}`} -
+
@@ -217,26 +229,26 @@ const RecordsList: FunctionComponent = ({ )} { - setCustomFilterVals && setCustomFilterVals([]); - setSearchVal([]); + clearUserSearchVal={() => { + setCustomSearchVals && setCustomSearchVals([]); + setParsedSearchVals([]); }} matchingResultsCount={`${remoteCount?.toLocaleString()} matching ${ - remoteCount > 1 ? searchTerm : searchTerm.slice(0, -1) + remoteCount > 1 ? dataName : dataName.slice(0, -1) }`} handleDownload={handleDownload} - customUI={customFilterUI} + customUI={customToolbarUI} /> {({ width }) => (
= ({ context={{ navigateFunction: navigate, }} - defaultColDef={defaultRecordsColDef} + defaultColDef={defaultReadOnlyColDef} onGridReady={(params) => { params.api.sizeColumnsToFit(); }} @@ -262,6 +274,4 @@ const RecordsList: FunctionComponent = ({ ); -}; - -export default RecordsList; +} diff --git a/frontend/src/components/SamplesList.tsx b/frontend/src/components/SamplesList.tsx index 7a300241..a5e24e75 100644 --- a/frontend/src/components/SamplesList.tsx +++ b/frontend/src/components/SamplesList.tsx @@ -1,132 +1,86 @@ import { SortDirection, Sample, + SampleWhere, useFindSamplesByInputValueQuery, - SampleMetadataWhere, } from "../generated/graphql"; import AutoSizer from "react-virtualized-auto-sizer"; import { Button, Col } from "react-bootstrap"; -import { FunctionComponent, useEffect, useRef } from "react"; +import { useEffect, useRef } from "react"; import { DownloadModal } from "./DownloadModal"; import { UpdateModal } from "./UpdateModal"; import { AlertModal } from "./AlertModal"; import { CSVFormulate } from "../utils/CSVExport"; import { - SampleDetailsColumns, - defaultSamplesColDef, SampleChange, SampleMetadataExtended, + handleSearch, } from "../shared/helpers"; import { AgGridReact } from "ag-grid-react"; import { useState } from "react"; import "ag-grid-community/styles/ag-grid.css"; import "ag-grid-community/styles/ag-theme-alpine.css"; import "ag-grid-enterprise"; -import { CellValueChangedEvent } from "ag-grid-community"; -import { parseSearchQueries } from "../utils/parseSearchQueries"; +import { CellValueChangedEvent, ColDef } from "ag-grid-community"; import { ErrorMessage, LoadingSpinner, Toolbar } from "../shared/tableElements"; +import styles from "./records.module.scss"; const POLLING_INTERVAL = 2000; const max_rows = 500; interface ISampleListProps { - height: number; - setUnsavedChanges?: (val: boolean) => void; - searchVariables?: SampleMetadataWhere; + columnDefs: ColDef[]; + defaultColDef: ColDef; + getRowData: (samples: Sample[]) => any[]; + setUnsavedChanges?: (unsavedChanges: boolean) => void; + parentWhereVariables?: SampleWhere; + refetchWhereVariables: (parsedSearchVals: string[]) => SampleWhere; exportFileName?: string; - sampleQueryParamFieldName?: string; - sampleQueryParamValue?: string; } -function sampleFilterWhereVariables( - uniqueQueries: string[] -): SampleMetadataWhere[] { - if (uniqueQueries.length > 1) { - return [ - { cmoSampleName_IN: uniqueQueries }, - { importDate_IN: uniqueQueries }, - { investigatorSampleId_IN: uniqueQueries }, - { primaryId_IN: uniqueQueries }, - { sampleClass_IN: uniqueQueries }, - { cmoPatientId_IN: uniqueQueries }, - { cmoSampleIdFields_IN: uniqueQueries }, - { sampleName_IN: uniqueQueries }, - { preservation_IN: uniqueQueries }, - { tumorOrNormal_IN: uniqueQueries }, - { oncotreeCode_IN: uniqueQueries }, - { collectionYear_IN: uniqueQueries }, - { sampleOrigin_IN: uniqueQueries }, - { tissueLocation_IN: uniqueQueries }, - { sex_IN: uniqueQueries }, - { libraries_IN: uniqueQueries }, - { sampleType_IN: uniqueQueries }, - { species_IN: uniqueQueries }, - { genePanel_IN: uniqueQueries }, - ]; - } else { - return [ - { cmoSampleName_CONTAINS: uniqueQueries[0] }, - { importDate_CONTAINS: uniqueQueries[0] }, - { investigatorSampleId_CONTAINS: uniqueQueries[0] }, - { primaryId_CONTAINS: uniqueQueries[0] }, - { sampleClass_CONTAINS: uniqueQueries[0] }, - { cmoPatientId_CONTAINS: uniqueQueries[0] }, - { cmoSampleIdFields_CONTAINS: uniqueQueries[0] }, - { sampleName_CONTAINS: uniqueQueries[0] }, - { preservation_CONTAINS: uniqueQueries[0] }, - { tumorOrNormal_CONTAINS: uniqueQueries[0] }, - { oncotreeCode_CONTAINS: uniqueQueries[0] }, - { collectionYear_CONTAINS: uniqueQueries[0] }, - { sampleOrigin_CONTAINS: uniqueQueries[0] }, - { tissueLocation_CONTAINS: uniqueQueries[0] }, - { sex_CONTAINS: uniqueQueries[0] }, - { libraries_CONTAINS: uniqueQueries[0] }, - { sampleType_CONTAINS: uniqueQueries[0] }, - { species_CONTAINS: uniqueQueries[0] }, - { genePanel_CONTAINS: uniqueQueries[0] }, - ]; - } -} - -function getSampleMetadata(samples: Sample[]) { - return samples.map((s: any) => { - return { - ...s.hasMetadataSampleMetadata[0], - revisable: s.revisable, - }; - }); -} - -export const SamplesList: FunctionComponent = ({ - searchVariables, - height, +export default function SamplesList({ + columnDefs, + defaultColDef, + getRowData, + parentWhereVariables, + refetchWhereVariables, setUnsavedChanges, exportFileName, - sampleQueryParamFieldName, - sampleQueryParamValue, -}) => { +}: ISampleListProps) { const { loading, error, data, startPolling, stopPolling, refetch } = useFindSamplesByInputValueQuery({ variables: { - ...(searchVariables + ...(parentWhereVariables ? { where: { - ...searchVariables, + ...parentWhereVariables, }, } : { first: max_rows, }), - options: { + sampleMetadataOptions: { sort: [{ importDate: SortDirection.Desc }], limit: 1, }, + bamCompletesOptions: { + sort: [{ date: SortDirection.Desc }], + limit: 1, + }, + mafCompletesOptions: { + sort: [{ date: SortDirection.Desc }], + limit: 1, + }, + qcCompletesOptions: { + sort: [{ date: SortDirection.Desc }], + limit: 1, + }, }, pollInterval: POLLING_INTERVAL, }); - const [val, setVal] = useState(""); - const [searchVal, setSearchVal] = useState(""); + const [userSearchVal, setUserSearchVal] = useState(""); + const [parsedSearchVals, setParsedSearchVals] = useState([]); const [showDownloadModal, setShowDownloadModal] = useState(false); const [showAlertModal, setShowAlertModal] = useState(false); const [showUpdateModal, setShowUpdateModal] = useState(false); @@ -138,23 +92,14 @@ export const SamplesList: FunctionComponent = ({ gridRef.current?.api?.showLoadingOverlay(); async function refetchSearchVal() { await refetch({ - where: { - hasMetadataSampleMetadata_SOME: { - OR: sampleFilterWhereVariables(parseSearchQueries(searchVal)), - ...(sampleQueryParamFieldName && sampleQueryParamValue - ? { - [sampleQueryParamFieldName]: sampleQueryParamValue, - } - : {}), - }, - }, + where: refetchWhereVariables(parsedSearchVals), }); } refetchSearchVal().then(() => { gridRef.current?.api?.hideOverlay(); }); // eslint-disable-next-line react-hooks/exhaustive-deps - }, [searchVal]); + }, [parsedSearchVals]); if (loading) return ; @@ -210,7 +155,7 @@ export const SamplesList: FunctionComponent = ({ { return Promise.resolve( - CSVFormulate(getSampleMetadata(samples), SampleDetailsColumns) + CSVFormulate(getRowData(samples), columnDefs) ); }} onComplete={() => { @@ -242,14 +187,13 @@ export const SamplesList: FunctionComponent = ({ /> { - setSearchVal(val); - }} - clearInput={() => { - setSearchVal(""); + dataName={"samples"} + userSearchVal={userSearchVal} + setUserSearchVal={setUserSearchVal} + handleSearch={() => handleSearch(userSearchVal, setParsedSearchVals)} + clearUserSearchVal={() => { + setUserSearchVal(""); + setParsedSearchVals([]); }} matchingResultsCount={ remoteCount === max_rows @@ -289,8 +233,8 @@ export const SamplesList: FunctionComponent = ({ {({ width }) => (
getRowId={(d) => { @@ -300,7 +244,6 @@ export const SamplesList: FunctionComponent = ({ unlocked: function (params) { return params.data?.revisable === true; }, - locked: function (params) { return params.data?.revisable === false; }, @@ -314,11 +257,11 @@ export const SamplesList: FunctionComponent = ({ ); }, }} - columnDefs={SampleDetailsColumns} - rowData={getSampleMetadata(samples)} + columnDefs={columnDefs} + rowData={getRowData(samples)} onCellEditRequest={onCellValueChanged} readOnlyEdit={true} - defaultColDef={defaultSamplesColDef} + defaultColDef={defaultColDef} ref={gridRef} context={{ getChanges: () => changes, @@ -343,4 +286,4 @@ export const SamplesList: FunctionComponent = ({ ); -}; +} diff --git a/frontend/src/components/records.module.scss b/frontend/src/components/records.module.scss index 09f5f455..787a829a 100644 --- a/frontend/src/components/records.module.scss +++ b/frontend/src/components/records.module.scss @@ -9,3 +9,11 @@ align-items: center; justify-content: center; } + +.tableHeight { + height: calc(100vh - 230px); +} + +.popupHeight { + height: calc(100vh - 180px); +} diff --git a/frontend/src/generated/graphql.ts b/frontend/src/generated/graphql.ts index cef627ab..fbc0143f 100644 --- a/frontend/src/generated/graphql.ts +++ b/frontend/src/generated/graphql.ts @@ -21,679 +21,951 @@ export type Scalars = { Float: number; }; -export type CreateInfo = { - __typename?: "CreateInfo"; - bookmark?: Maybe; - nodesCreated: Scalars["Int"]; - relationshipsCreated: Scalars["Int"]; +export type BamComplete = { + __typename?: "BamComplete"; + date: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent: Array; + temposHasEventAggregate?: Maybe; + temposHasEventConnection: BamCompleteTemposHasEventConnection; }; -export type CreatePatientAliasesMutationResponse = { - __typename?: "CreatePatientAliasesMutationResponse"; - info: CreateInfo; - patientAliases: Array; +export type BamCompleteTemposHasEventArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type CreatePatientsMutationResponse = { - __typename?: "CreatePatientsMutationResponse"; - info: CreateInfo; - patients: Array; +export type BamCompleteTemposHasEventAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type CreateProjectsMutationResponse = { - __typename?: "CreateProjectsMutationResponse"; - info: CreateInfo; - projects: Array; +export type BamCompleteTemposHasEventConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; }; -export type CreateRequestMetadataMutationResponse = { - __typename?: "CreateRequestMetadataMutationResponse"; - info: CreateInfo; - requestMetadata: Array; +export type BamCompleteAggregateSelection = { + __typename?: "BamCompleteAggregateSelection"; + count: Scalars["Int"]; + date: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; }; -export type CreateRequestsMutationResponse = { - __typename?: "CreateRequestsMutationResponse"; - info: CreateInfo; - requests: Array; +export type BamCompleteConnectInput = { + temposHasEvent?: InputMaybe< + Array + >; }; -export type CreateSampleAliasesMutationResponse = { - __typename?: "CreateSampleAliasesMutationResponse"; - info: CreateInfo; - sampleAliases: Array; +export type BamCompleteConnectWhere = { + node: BamCompleteWhere; }; -export type CreateSampleMetadataMutationResponse = { - __typename?: "CreateSampleMetadataMutationResponse"; - info: CreateInfo; - sampleMetadata: Array; +export type BamCompleteCreateInput = { + date: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent?: InputMaybe; }; -export type CreateSamplesMutationResponse = { - __typename?: "CreateSamplesMutationResponse"; - info: CreateInfo; - samples: Array; +export type BamCompleteDeleteInput = { + temposHasEvent?: InputMaybe>; }; -export type CreateStatusesMutationResponse = { - __typename?: "CreateStatusesMutationResponse"; - info: CreateInfo; - statuses: Array; +export type BamCompleteDisconnectInput = { + temposHasEvent?: InputMaybe< + Array + >; }; -export type DeleteInfo = { - __typename?: "DeleteInfo"; - bookmark?: Maybe; - nodesDeleted: Scalars["Int"]; - relationshipsDeleted: Scalars["Int"]; +export type BamCompleteEdge = { + __typename?: "BamCompleteEdge"; + cursor: Scalars["String"]; + node: BamComplete; }; -export type Mutation = { - __typename?: "Mutation"; - createPatientAliases: CreatePatientAliasesMutationResponse; - createPatients: CreatePatientsMutationResponse; - createProjects: CreateProjectsMutationResponse; - createRequestMetadata: CreateRequestMetadataMutationResponse; - createRequests: CreateRequestsMutationResponse; - createSampleAliases: CreateSampleAliasesMutationResponse; - createSampleMetadata: CreateSampleMetadataMutationResponse; - createSamples: CreateSamplesMutationResponse; - createStatuses: CreateStatusesMutationResponse; - deletePatientAliases: DeleteInfo; - deletePatients: DeleteInfo; - deleteProjects: DeleteInfo; - deleteRequestMetadata: DeleteInfo; - deleteRequests: DeleteInfo; - deleteSampleAliases: DeleteInfo; - deleteSampleMetadata: DeleteInfo; - deleteSamples: DeleteInfo; - deleteStatuses: DeleteInfo; - updatePatientAliases: UpdatePatientAliasesMutationResponse; - updatePatients: UpdatePatientsMutationResponse; - updateProjects: UpdateProjectsMutationResponse; - updateRequestMetadata: UpdateRequestMetadataMutationResponse; - updateRequests: UpdateRequestsMutationResponse; - updateSampleAliases: UpdateSampleAliasesMutationResponse; - updateSampleMetadata: UpdateSampleMetadataMutationResponse; - updateSamples: UpdateSamplesMutationResponse; - updateStatuses: UpdateStatusesMutationResponse; +export type BamCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more BamCompleteSort objects to sort BamCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; }; -export type MutationCreatePatientAliasesArgs = { - input: Array; +export type BamCompleteRelationInput = { + temposHasEvent?: InputMaybe>; }; -export type MutationCreatePatientsArgs = { - input: Array; +/** Fields to sort BamCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one BamCompleteSort object. */ +export type BamCompleteSort = { + date?: InputMaybe; + status?: InputMaybe; }; -export type MutationCreateProjectsArgs = { - input: Array; +export type BamCompleteTempoTemposHasEventAggregationSelection = { + __typename?: "BamCompleteTempoTemposHasEventAggregationSelection"; + count: Scalars["Int"]; }; -export type MutationCreateRequestMetadataArgs = { - input: Array; +export type BamCompleteTemposHasEventAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; }; -export type MutationCreateRequestsArgs = { - input: Array; +export type BamCompleteTemposHasEventConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type MutationCreateSampleAliasesArgs = { - input: Array; +export type BamCompleteTemposHasEventConnection = { + __typename?: "BamCompleteTemposHasEventConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type MutationCreateSampleMetadataArgs = { - input: Array; +export type BamCompleteTemposHasEventConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type MutationCreateSamplesArgs = { - input: Array; +export type BamCompleteTemposHasEventCreateFieldInput = { + node: TempoCreateInput; }; -export type MutationCreateStatusesArgs = { - input: Array; +export type BamCompleteTemposHasEventDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeletePatientAliasesArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type BamCompleteTemposHasEventDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeletePatientsArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type BamCompleteTemposHasEventFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; }; -export type MutationDeleteProjectsArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type BamCompleteTemposHasEventRelationship = { + __typename?: "BamCompleteTemposHasEventRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type BamCompleteTemposHasEventUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type BamCompleteTemposHasEventUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type BamCompleteUpdateInput = { + date?: InputMaybe; + status?: InputMaybe; + temposHasEvent?: InputMaybe>; +}; + +export type BamCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + temposHasEventAggregate?: InputMaybe; + temposHasEventConnection_ALL?: InputMaybe; + temposHasEventConnection_NONE?: InputMaybe; + temposHasEventConnection_SINGLE?: InputMaybe; + temposHasEventConnection_SOME?: InputMaybe; + /** Return BamCompletes where all of the related Tempos match this filter */ + temposHasEvent_ALL?: InputMaybe; + /** Return BamCompletes where none of the related Tempos match this filter */ + temposHasEvent_NONE?: InputMaybe; + /** Return BamCompletes where one of the related Tempos match this filter */ + temposHasEvent_SINGLE?: InputMaybe; + /** Return BamCompletes where some of the related Tempos match this filter */ + temposHasEvent_SOME?: InputMaybe; +}; + +export type BamCompletesConnection = { + __typename?: "BamCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type MutationDeleteRequestMetadataArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type Cohort = { + __typename?: "Cohort"; + cohortId: Scalars["String"]; + hasCohortCompleteCohortCompletes: Array; + hasCohortCompleteCohortCompletesAggregate?: Maybe; + hasCohortCompleteCohortCompletesConnection: CohortHasCohortCompleteCohortCompletesConnection; + hasCohortSampleSamples: Array; + hasCohortSampleSamplesAggregate?: Maybe; + hasCohortSampleSamplesConnection: CohortHasCohortSampleSamplesConnection; }; -export type MutationDeleteRequestsArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeleteSampleAliasesArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeleteSampleMetadataArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe< + Array + >; + where?: InputMaybe; }; -export type MutationDeleteSamplesArgs = { - delete?: InputMaybe; +export type CohortHasCohortSampleSamplesArgs = { + directed?: InputMaybe; + options?: InputMaybe; where?: InputMaybe; }; -export type MutationDeleteStatusesArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortSampleSamplesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type MutationUpdatePatientAliasesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortSampleSamplesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; }; -export type MutationUpdatePatientsArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortAggregateSelection = { + __typename?: "CohortAggregateSelection"; + cohortId: StringAggregateSelectionNonNullable; + count: Scalars["Int"]; }; -export type MutationUpdateProjectsArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCohortCompleteHasCohortCompleteCohortCompletesAggregationSelection = + { + __typename?: "CohortCohortCompleteHasCohortCompleteCohortCompletesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; + }; + +export type CohortCohortCompleteHasCohortCompleteCohortCompletesNodeAggregateSelection = + { + __typename?: "CohortCohortCompleteHasCohortCompleteCohortCompletesNodeAggregateSelection"; + analyst: StringAggregateSelectionNullable; + date: StringAggregateSelectionNonNullable; + projectSubtitle: StringAggregateSelectionNullable; + projectTitle: StringAggregateSelectionNullable; + status: StringAggregateSelectionNonNullable; + type: StringAggregateSelectionNonNullable; + }; + +export type CohortComplete = { + __typename?: "CohortComplete"; + analyst?: Maybe; + cohortsHasCohortComplete: Array; + cohortsHasCohortCompleteAggregate?: Maybe; + cohortsHasCohortCompleteConnection: CohortCompleteCohortsHasCohortCompleteConnection; + date: Scalars["String"]; + endUsers?: Maybe>>; + pmUsers?: Maybe>>; + projectSubtitle?: Maybe; + projectTitle?: Maybe; + status: Scalars["String"]; + type: Scalars["String"]; +}; + +export type CohortCompleteCohortsHasCohortCompleteArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type MutationUpdateRequestMetadataArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type MutationUpdateRequestsArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe< + Array + >; + where?: InputMaybe; }; -export type MutationUpdateSampleAliasesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteAggregateSelection = { + __typename?: "CohortCompleteAggregateSelection"; + analyst: StringAggregateSelectionNullable; + count: Scalars["Int"]; + date: StringAggregateSelectionNonNullable; + projectSubtitle: StringAggregateSelectionNullable; + projectTitle: StringAggregateSelectionNullable; + status: StringAggregateSelectionNonNullable; + type: StringAggregateSelectionNonNullable; }; -export type MutationUpdateSampleMetadataArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortCohortsHasCohortCompleteAggregationSelection = { + __typename?: "CohortCompleteCohortCohortsHasCohortCompleteAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; }; -export type MutationUpdateSamplesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortCohortsHasCohortCompleteNodeAggregateSelection = + { + __typename?: "CohortCompleteCohortCohortsHasCohortCompleteNodeAggregateSelection"; + cohortId: StringAggregateSelectionNonNullable; + }; + +export type CohortCompleteCohortsHasCohortCompleteAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; }; -export type MutationUpdateStatusesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -/** Pagination information (Relay) */ -export type PageInfo = { - __typename?: "PageInfo"; - endCursor?: Maybe; - hasNextPage: Scalars["Boolean"]; - hasPreviousPage: Scalars["Boolean"]; - startCursor?: Maybe; +export type CohortCompleteCohortsHasCohortCompleteConnection = { + __typename?: "CohortCompleteCohortsHasCohortCompleteConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type Patient = { - __typename?: "Patient"; - hasSampleSamples: Array; - hasSampleSamplesAggregate?: Maybe; - hasSampleSamplesConnection: PatientHasSampleSamplesConnection; - patientAliasesIsAlias: Array; - patientAliasesIsAliasAggregate?: Maybe; - patientAliasesIsAliasConnection: PatientPatientAliasesIsAliasConnection; - smilePatientId: Scalars["String"]; +export type CohortCompleteCohortsHasCohortCompleteConnectionSort = { + node?: InputMaybe; }; -export type PatientHasSampleSamplesArgs = { - directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteConnectionWhere = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type PatientHasSampleSamplesAggregateArgs = { - directed?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteCreateFieldInput = { + node: CohortCreateInput; }; -export type PatientHasSampleSamplesConnectionArgs = { - after?: InputMaybe; - directed?: InputMaybe; - first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type PatientPatientAliasesIsAliasArgs = { - directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type PatientPatientAliasesIsAliasAggregateArgs = { - directed?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; }; -export type PatientPatientAliasesIsAliasConnectionArgs = { - after?: InputMaybe; - directed?: InputMaybe; - first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + cohortId_AVERAGE_EQUAL?: InputMaybe; + cohortId_AVERAGE_GT?: InputMaybe; + cohortId_AVERAGE_GTE?: InputMaybe; + cohortId_AVERAGE_LT?: InputMaybe; + cohortId_AVERAGE_LTE?: InputMaybe; + cohortId_EQUAL?: InputMaybe; + cohortId_GT?: InputMaybe; + cohortId_GTE?: InputMaybe; + cohortId_LONGEST_EQUAL?: InputMaybe; + cohortId_LONGEST_GT?: InputMaybe; + cohortId_LONGEST_GTE?: InputMaybe; + cohortId_LONGEST_LT?: InputMaybe; + cohortId_LONGEST_LTE?: InputMaybe; + cohortId_LT?: InputMaybe; + cohortId_LTE?: InputMaybe; + cohortId_SHORTEST_EQUAL?: InputMaybe; + cohortId_SHORTEST_GT?: InputMaybe; + cohortId_SHORTEST_GTE?: InputMaybe; + cohortId_SHORTEST_LT?: InputMaybe; + cohortId_SHORTEST_LTE?: InputMaybe; +}; + +export type CohortCompleteCohortsHasCohortCompleteRelationship = { + __typename?: "CohortCompleteCohortsHasCohortCompleteRelationship"; + cursor: Scalars["String"]; + node: Cohort; }; -export type PatientAggregateSelection = { - __typename?: "PatientAggregateSelection"; - count: Scalars["Int"]; - smilePatientId: StringAggregateSelectionNonNullable; +export type CohortCompleteCohortsHasCohortCompleteUpdateConnectionInput = { + node?: InputMaybe; }; -export type PatientAlias = { - __typename?: "PatientAlias"; - isAliasPatients: Array; - isAliasPatientsAggregate?: Maybe; - isAliasPatientsConnection: PatientAliasIsAliasPatientsConnection; - namespace: Scalars["String"]; - value: Scalars["String"]; +export type CohortCompleteCohortsHasCohortCompleteUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; + delete?: InputMaybe< + Array + >; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsArgs = { - directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteConnectInput = { + cohortsHasCohortComplete?: InputMaybe< + Array + >; }; -export type PatientAliasIsAliasPatientsAggregateArgs = { - directed?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteConnectWhere = { + node: CohortCompleteWhere; }; -export type PatientAliasIsAliasPatientsConnectionArgs = { - after?: InputMaybe; - directed?: InputMaybe; - first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; +export type CohortCompleteCreateInput = { + analyst?: InputMaybe; + cohortsHasCohortComplete?: InputMaybe; + date: Scalars["String"]; + endUsers?: InputMaybe>>; + pmUsers?: InputMaybe>>; + projectSubtitle?: InputMaybe; + projectTitle?: InputMaybe; + status: Scalars["String"]; + type: Scalars["String"]; }; -export type PatientAliasAggregateSelection = { - __typename?: "PatientAliasAggregateSelection"; - count: Scalars["Int"]; - namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNonNullable; +export type CohortCompleteDeleteInput = { + cohortsHasCohortComplete?: InputMaybe< + Array + >; }; -export type PatientAliasConnectInput = { - isAliasPatients?: InputMaybe< - Array +export type CohortCompleteDisconnectInput = { + cohortsHasCohortComplete?: InputMaybe< + Array >; }; -export type PatientAliasConnectWhere = { - node: PatientAliasWhere; +export type CohortCompleteEdge = { + __typename?: "CohortCompleteEdge"; + cursor: Scalars["String"]; + node: CohortComplete; }; -export type PatientAliasCreateInput = { - isAliasPatients?: InputMaybe; - namespace: Scalars["String"]; - value: Scalars["String"]; +export type CohortCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more CohortCompleteSort objects to sort CohortCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; }; -export type PatientAliasDeleteInput = { - isAliasPatients?: InputMaybe< - Array +export type CohortCompleteRelationInput = { + cohortsHasCohortComplete?: InputMaybe< + Array >; }; -export type PatientAliasDisconnectInput = { - isAliasPatients?: InputMaybe< - Array +/** Fields to sort CohortCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one CohortCompleteSort object. */ +export type CohortCompleteSort = { + analyst?: InputMaybe; + date?: InputMaybe; + projectSubtitle?: InputMaybe; + projectTitle?: InputMaybe; + status?: InputMaybe; + type?: InputMaybe; +}; + +export type CohortCompleteUpdateInput = { + analyst?: InputMaybe; + cohortsHasCohortComplete?: InputMaybe< + Array >; + date?: InputMaybe; + endUsers?: InputMaybe>>; + endUsers_POP?: InputMaybe; + endUsers_PUSH?: InputMaybe>>; + pmUsers?: InputMaybe>>; + pmUsers_POP?: InputMaybe; + pmUsers_PUSH?: InputMaybe>>; + projectSubtitle?: InputMaybe; + projectTitle?: InputMaybe; + status?: InputMaybe; + type?: InputMaybe; +}; + +export type CohortCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + analyst?: InputMaybe; + analyst_CONTAINS?: InputMaybe; + analyst_ENDS_WITH?: InputMaybe; + analyst_IN?: InputMaybe>>; + analyst_NOT?: InputMaybe; + analyst_NOT_CONTAINS?: InputMaybe; + analyst_NOT_ENDS_WITH?: InputMaybe; + analyst_NOT_IN?: InputMaybe>>; + analyst_NOT_STARTS_WITH?: InputMaybe; + analyst_STARTS_WITH?: InputMaybe; + cohortsHasCohortCompleteAggregate?: InputMaybe; + cohortsHasCohortCompleteConnection_ALL?: InputMaybe; + cohortsHasCohortCompleteConnection_NONE?: InputMaybe; + cohortsHasCohortCompleteConnection_SINGLE?: InputMaybe; + cohortsHasCohortCompleteConnection_SOME?: InputMaybe; + /** Return CohortCompletes where all of the related Cohorts match this filter */ + cohortsHasCohortComplete_ALL?: InputMaybe; + /** Return CohortCompletes where none of the related Cohorts match this filter */ + cohortsHasCohortComplete_NONE?: InputMaybe; + /** Return CohortCompletes where one of the related Cohorts match this filter */ + cohortsHasCohortComplete_SINGLE?: InputMaybe; + /** Return CohortCompletes where some of the related Cohorts match this filter */ + cohortsHasCohortComplete_SOME?: InputMaybe; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + endUsers?: InputMaybe>>; + endUsers_INCLUDES?: InputMaybe; + endUsers_NOT?: InputMaybe>>; + endUsers_NOT_INCLUDES?: InputMaybe; + pmUsers?: InputMaybe>>; + pmUsers_INCLUDES?: InputMaybe; + pmUsers_NOT?: InputMaybe>>; + pmUsers_NOT_INCLUDES?: InputMaybe; + projectSubtitle?: InputMaybe; + projectSubtitle_CONTAINS?: InputMaybe; + projectSubtitle_ENDS_WITH?: InputMaybe; + projectSubtitle_IN?: InputMaybe>>; + projectSubtitle_NOT?: InputMaybe; + projectSubtitle_NOT_CONTAINS?: InputMaybe; + projectSubtitle_NOT_ENDS_WITH?: InputMaybe; + projectSubtitle_NOT_IN?: InputMaybe>>; + projectSubtitle_NOT_STARTS_WITH?: InputMaybe; + projectSubtitle_STARTS_WITH?: InputMaybe; + projectTitle?: InputMaybe; + projectTitle_CONTAINS?: InputMaybe; + projectTitle_ENDS_WITH?: InputMaybe; + projectTitle_IN?: InputMaybe>>; + projectTitle_NOT?: InputMaybe; + projectTitle_NOT_CONTAINS?: InputMaybe; + projectTitle_NOT_ENDS_WITH?: InputMaybe; + projectTitle_NOT_IN?: InputMaybe>>; + projectTitle_NOT_STARTS_WITH?: InputMaybe; + projectTitle_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + type?: InputMaybe; + type_CONTAINS?: InputMaybe; + type_ENDS_WITH?: InputMaybe; + type_IN?: InputMaybe>; + type_NOT?: InputMaybe; + type_NOT_CONTAINS?: InputMaybe; + type_NOT_ENDS_WITH?: InputMaybe; + type_NOT_IN?: InputMaybe>; + type_NOT_STARTS_WITH?: InputMaybe; + type_STARTS_WITH?: InputMaybe; +}; + +export type CohortCompletesConnection = { + __typename?: "CohortCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type PatientAliasEdge = { - __typename?: "PatientAliasEdge"; +export type CohortConnectInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortConnectWhere = { + node: CohortWhere; +}; + +export type CohortCreateInput = { + cohortId: Scalars["String"]; + hasCohortCompleteCohortCompletes?: InputMaybe; + hasCohortSampleSamples?: InputMaybe; +}; + +export type CohortDeleteInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortDisconnectInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortEdge = { + __typename?: "CohortEdge"; cursor: Scalars["String"]; - node: PatientAlias; + node: Cohort; }; -export type PatientAliasIsAliasPatientsAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type CohortHasCohortCompleteCohortCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; count?: InputMaybe; count_GT?: InputMaybe; count_GTE?: InputMaybe; count_LT?: InputMaybe; count_LTE?: InputMaybe; - node?: InputMaybe; + node?: InputMaybe; }; -export type PatientAliasIsAliasPatientsConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsConnection = { - __typename?: "PatientAliasIsAliasPatientsConnection"; - edges: Array; +export type CohortHasCohortCompleteCohortCompletesConnection = { + __typename?: "CohortHasCohortCompleteCohortCompletesConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type PatientAliasIsAliasPatientsConnectionSort = { - node?: InputMaybe; -}; - -export type PatientAliasIsAliasPatientsConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesConnectionSort = { + node?: InputMaybe; }; -export type PatientAliasIsAliasPatientsCreateFieldInput = { - node: PatientCreateInput; +export type CohortHasCohortCompleteCohortCompletesConnectionWhere = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type PatientAliasIsAliasPatientsDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesCreateFieldInput = { + node: CohortCompleteCreateInput; }; -export type PatientAliasIsAliasPatientsDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type CohortHasCohortCompleteCohortCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsNodeAggregationWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - smilePatientId_AVERAGE_EQUAL?: InputMaybe; - smilePatientId_AVERAGE_GT?: InputMaybe; - smilePatientId_AVERAGE_GTE?: InputMaybe; - smilePatientId_AVERAGE_LT?: InputMaybe; - smilePatientId_AVERAGE_LTE?: InputMaybe; - smilePatientId_EQUAL?: InputMaybe; - smilePatientId_GT?: InputMaybe; - smilePatientId_GTE?: InputMaybe; - smilePatientId_LONGEST_EQUAL?: InputMaybe; - smilePatientId_LONGEST_GT?: InputMaybe; - smilePatientId_LONGEST_GTE?: InputMaybe; - smilePatientId_LONGEST_LT?: InputMaybe; - smilePatientId_LONGEST_LTE?: InputMaybe; - smilePatientId_LT?: InputMaybe; - smilePatientId_LTE?: InputMaybe; - smilePatientId_SHORTEST_EQUAL?: InputMaybe; - smilePatientId_SHORTEST_GT?: InputMaybe; - smilePatientId_SHORTEST_GTE?: InputMaybe; - smilePatientId_SHORTEST_LT?: InputMaybe; - smilePatientId_SHORTEST_LTE?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; }; -export type PatientAliasIsAliasPatientsRelationship = { - __typename?: "PatientAliasIsAliasPatientsRelationship"; +export type CohortHasCohortCompleteCohortCompletesNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + analyst_AVERAGE_EQUAL?: InputMaybe; + analyst_AVERAGE_GT?: InputMaybe; + analyst_AVERAGE_GTE?: InputMaybe; + analyst_AVERAGE_LT?: InputMaybe; + analyst_AVERAGE_LTE?: InputMaybe; + analyst_EQUAL?: InputMaybe; + analyst_GT?: InputMaybe; + analyst_GTE?: InputMaybe; + analyst_LONGEST_EQUAL?: InputMaybe; + analyst_LONGEST_GT?: InputMaybe; + analyst_LONGEST_GTE?: InputMaybe; + analyst_LONGEST_LT?: InputMaybe; + analyst_LONGEST_LTE?: InputMaybe; + analyst_LT?: InputMaybe; + analyst_LTE?: InputMaybe; + analyst_SHORTEST_EQUAL?: InputMaybe; + analyst_SHORTEST_GT?: InputMaybe; + analyst_SHORTEST_GTE?: InputMaybe; + analyst_SHORTEST_LT?: InputMaybe; + analyst_SHORTEST_LTE?: InputMaybe; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + projectSubtitle_AVERAGE_EQUAL?: InputMaybe; + projectSubtitle_AVERAGE_GT?: InputMaybe; + projectSubtitle_AVERAGE_GTE?: InputMaybe; + projectSubtitle_AVERAGE_LT?: InputMaybe; + projectSubtitle_AVERAGE_LTE?: InputMaybe; + projectSubtitle_EQUAL?: InputMaybe; + projectSubtitle_GT?: InputMaybe; + projectSubtitle_GTE?: InputMaybe; + projectSubtitle_LONGEST_EQUAL?: InputMaybe; + projectSubtitle_LONGEST_GT?: InputMaybe; + projectSubtitle_LONGEST_GTE?: InputMaybe; + projectSubtitle_LONGEST_LT?: InputMaybe; + projectSubtitle_LONGEST_LTE?: InputMaybe; + projectSubtitle_LT?: InputMaybe; + projectSubtitle_LTE?: InputMaybe; + projectSubtitle_SHORTEST_EQUAL?: InputMaybe; + projectSubtitle_SHORTEST_GT?: InputMaybe; + projectSubtitle_SHORTEST_GTE?: InputMaybe; + projectSubtitle_SHORTEST_LT?: InputMaybe; + projectSubtitle_SHORTEST_LTE?: InputMaybe; + projectTitle_AVERAGE_EQUAL?: InputMaybe; + projectTitle_AVERAGE_GT?: InputMaybe; + projectTitle_AVERAGE_GTE?: InputMaybe; + projectTitle_AVERAGE_LT?: InputMaybe; + projectTitle_AVERAGE_LTE?: InputMaybe; + projectTitle_EQUAL?: InputMaybe; + projectTitle_GT?: InputMaybe; + projectTitle_GTE?: InputMaybe; + projectTitle_LONGEST_EQUAL?: InputMaybe; + projectTitle_LONGEST_GT?: InputMaybe; + projectTitle_LONGEST_GTE?: InputMaybe; + projectTitle_LONGEST_LT?: InputMaybe; + projectTitle_LONGEST_LTE?: InputMaybe; + projectTitle_LT?: InputMaybe; + projectTitle_LTE?: InputMaybe; + projectTitle_SHORTEST_EQUAL?: InputMaybe; + projectTitle_SHORTEST_GT?: InputMaybe; + projectTitle_SHORTEST_GTE?: InputMaybe; + projectTitle_SHORTEST_LT?: InputMaybe; + projectTitle_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; + type_AVERAGE_EQUAL?: InputMaybe; + type_AVERAGE_GT?: InputMaybe; + type_AVERAGE_GTE?: InputMaybe; + type_AVERAGE_LT?: InputMaybe; + type_AVERAGE_LTE?: InputMaybe; + type_EQUAL?: InputMaybe; + type_GT?: InputMaybe; + type_GTE?: InputMaybe; + type_LONGEST_EQUAL?: InputMaybe; + type_LONGEST_GT?: InputMaybe; + type_LONGEST_GTE?: InputMaybe; + type_LONGEST_LT?: InputMaybe; + type_LONGEST_LTE?: InputMaybe; + type_LT?: InputMaybe; + type_LTE?: InputMaybe; + type_SHORTEST_EQUAL?: InputMaybe; + type_SHORTEST_GT?: InputMaybe; + type_SHORTEST_GTE?: InputMaybe; + type_SHORTEST_LT?: InputMaybe; + type_SHORTEST_LTE?: InputMaybe; +}; + +export type CohortHasCohortCompleteCohortCompletesRelationship = { + __typename?: "CohortHasCohortCompleteCohortCompletesRelationship"; cursor: Scalars["String"]; - node: Patient; + node: CohortComplete; }; -export type PatientAliasIsAliasPatientsUpdateConnectionInput = { - node?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesUpdateConnectionInput = { + node?: InputMaybe; }; -export type PatientAliasIsAliasPatientsUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; +export type CohortHasCohortCompleteCohortCompletesUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; + delete?: InputMaybe< + Array + >; disconnect?: InputMaybe< - Array + Array >; - update?: InputMaybe; - where?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasOptions = { - limit?: InputMaybe; - offset?: InputMaybe; - /** Specify one or more PatientAliasSort objects to sort PatientAliases by. The sorts will be applied in the order in which they are arranged in the array. */ - sort?: InputMaybe>; +export type CohortHasCohortSampleSamplesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; }; -export type PatientAliasPatientIsAliasPatientsAggregationSelection = { - __typename?: "PatientAliasPatientIsAliasPatientsAggregationSelection"; - count: Scalars["Int"]; - node?: Maybe; +export type CohortHasCohortSampleSamplesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type PatientAliasPatientIsAliasPatientsNodeAggregateSelection = { - __typename?: "PatientAliasPatientIsAliasPatientsNodeAggregateSelection"; - smilePatientId: StringAggregateSelectionNonNullable; +export type CohortHasCohortSampleSamplesConnection = { + __typename?: "CohortHasCohortSampleSamplesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type PatientAliasRelationInput = { - isAliasPatients?: InputMaybe< - Array - >; +export type CohortHasCohortSampleSamplesConnectionSort = { + node?: InputMaybe; }; -/** Fields to sort PatientAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientAliasSort object. */ -export type PatientAliasSort = { - namespace?: InputMaybe; - value?: InputMaybe; +export type CohortHasCohortSampleSamplesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type PatientAliasUpdateInput = { - isAliasPatients?: InputMaybe< - Array - >; - namespace?: InputMaybe; - value?: InputMaybe; +export type CohortHasCohortSampleSamplesCreateFieldInput = { + node: SampleCreateInput; }; -export type PatientAliasWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - isAliasPatientsAggregate?: InputMaybe; - isAliasPatientsConnection_ALL?: InputMaybe; - isAliasPatientsConnection_NONE?: InputMaybe; - isAliasPatientsConnection_SINGLE?: InputMaybe; - isAliasPatientsConnection_SOME?: InputMaybe; - /** Return PatientAliases where all of the related Patients match this filter */ - isAliasPatients_ALL?: InputMaybe; - /** Return PatientAliases where none of the related Patients match this filter */ - isAliasPatients_NONE?: InputMaybe; - /** Return PatientAliases where one of the related Patients match this filter */ - isAliasPatients_SINGLE?: InputMaybe; - /** Return PatientAliases where some of the related Patients match this filter */ - isAliasPatients_SOME?: InputMaybe; - namespace?: InputMaybe; - namespace_CONTAINS?: InputMaybe; - namespace_ENDS_WITH?: InputMaybe; - namespace_IN?: InputMaybe>; - namespace_NOT?: InputMaybe; - namespace_NOT_CONTAINS?: InputMaybe; - namespace_NOT_ENDS_WITH?: InputMaybe; - namespace_NOT_IN?: InputMaybe>; - namespace_NOT_STARTS_WITH?: InputMaybe; - namespace_STARTS_WITH?: InputMaybe; - value?: InputMaybe; - value_CONTAINS?: InputMaybe; - value_ENDS_WITH?: InputMaybe; - value_IN?: InputMaybe>; - value_NOT?: InputMaybe; - value_NOT_CONTAINS?: InputMaybe; - value_NOT_ENDS_WITH?: InputMaybe; - value_NOT_IN?: InputMaybe>; - value_NOT_STARTS_WITH?: InputMaybe; - value_STARTS_WITH?: InputMaybe; -}; - -export type PatientAliasesConnection = { - __typename?: "PatientAliasesConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; -}; - -export type PatientConnectInput = { - hasSampleSamples?: InputMaybe< - Array - >; - patientAliasesIsAlias?: InputMaybe< - Array - >; -}; - -export type PatientConnectWhere = { - node: PatientWhere; -}; - -export type PatientCreateInput = { - hasSampleSamples?: InputMaybe; - patientAliasesIsAlias?: InputMaybe; - smilePatientId: Scalars["String"]; -}; - -export type PatientDeleteInput = { - hasSampleSamples?: InputMaybe>; - patientAliasesIsAlias?: InputMaybe< - Array - >; -}; - -export type PatientDisconnectInput = { - hasSampleSamples?: InputMaybe< - Array - >; - patientAliasesIsAlias?: InputMaybe< - Array - >; -}; - -export type PatientEdge = { - __typename?: "PatientEdge"; - cursor: Scalars["String"]; - node: Patient; -}; - -export type PatientHasSampleSamplesAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - count?: InputMaybe; - count_GT?: InputMaybe; - count_GTE?: InputMaybe; - count_LT?: InputMaybe; - count_LTE?: InputMaybe; - node?: InputMaybe; -}; - -export type PatientHasSampleSamplesConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; -}; - -export type PatientHasSampleSamplesConnection = { - __typename?: "PatientHasSampleSamplesConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; -}; - -export type PatientHasSampleSamplesConnectionSort = { - node?: InputMaybe; -}; - -export type PatientHasSampleSamplesConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; -}; - -export type PatientHasSampleSamplesCreateFieldInput = { - node: SampleCreateInput; -}; - -export type PatientHasSampleSamplesDeleteFieldInput = { +export type CohortHasCohortSampleSamplesDeleteFieldInput = { delete?: InputMaybe; - where?: InputMaybe; + where?: InputMaybe; }; -export type PatientHasSampleSamplesDisconnectFieldInput = { +export type CohortHasCohortSampleSamplesDisconnectFieldInput = { disconnect?: InputMaybe; - where?: InputMaybe; + where?: InputMaybe; }; -export type PatientHasSampleSamplesFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type CohortHasCohortSampleSamplesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; }; -export type PatientHasSampleSamplesNodeAggregationWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type CohortHasCohortSampleSamplesNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; datasource_AVERAGE_EQUAL?: InputMaybe; datasource_AVERAGE_GT?: InputMaybe; datasource_AVERAGE_GTE?: InputMaybe; @@ -776,436 +1048,1688 @@ export type PatientHasSampleSamplesNodeAggregationWhereInput = { smileSampleId_SHORTEST_LTE?: InputMaybe; }; -export type PatientHasSampleSamplesRelationship = { - __typename?: "PatientHasSampleSamplesRelationship"; +export type CohortHasCohortSampleSamplesRelationship = { + __typename?: "CohortHasCohortSampleSamplesRelationship"; cursor: Scalars["String"]; node: Sample; }; -export type PatientHasSampleSamplesUpdateConnectionInput = { +export type CohortHasCohortSampleSamplesUpdateConnectionInput = { node?: InputMaybe; }; -export type PatientHasSampleSamplesUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; - disconnect?: InputMaybe>; - update?: InputMaybe; - where?: InputMaybe; -}; - -export type PatientIdsTriplet = { - __typename?: "PatientIdsTriplet"; - CMO_ID?: Maybe; - DMP_ID?: Maybe; - PT_MRN?: Maybe; +export type CohortHasCohortSampleSamplesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; }; -export type PatientOptions = { +export type CohortOptions = { limit?: InputMaybe; offset?: InputMaybe; - /** Specify one or more PatientSort objects to sort Patients by. The sorts will be applied in the order in which they are arranged in the array. */ - sort?: InputMaybe>; + /** Specify one or more CohortSort objects to sort Cohorts by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; }; -export type PatientPatientAliasPatientAliasesIsAliasAggregationSelection = { - __typename?: "PatientPatientAliasPatientAliasesIsAliasAggregationSelection"; +export type CohortRelationInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortSampleHasCohortSampleSamplesAggregationSelection = { + __typename?: "CohortSampleHasCohortSampleSamplesAggregationSelection"; count: Scalars["Int"]; - node?: Maybe; + node?: Maybe; }; -export type PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection = { - __typename?: "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection"; - namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNonNullable; +export type CohortSampleHasCohortSampleSamplesNodeAggregateSelection = { + __typename?: "CohortSampleHasCohortSampleSamplesNodeAggregateSelection"; + datasource: StringAggregateSelectionNonNullable; + sampleCategory: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + smileSampleId: StringAggregateSelectionNonNullable; }; -export type PatientPatientAliasesIsAliasAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - count?: InputMaybe; - count_GT?: InputMaybe; - count_GTE?: InputMaybe; - count_LT?: InputMaybe; - count_LTE?: InputMaybe; - node?: InputMaybe; +/** Fields to sort Cohorts by. The order in which sorts are applied is not guaranteed when specifying many fields in one CohortSort object. */ +export type CohortSort = { + cohortId?: InputMaybe; }; -export type PatientPatientAliasesIsAliasConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; +export type CohortUpdateInput = { + cohortId?: InputMaybe; + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; }; -export type PatientPatientAliasesIsAliasConnection = { - __typename?: "PatientPatientAliasesIsAliasConnection"; - edges: Array; +export type CohortWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + cohortId?: InputMaybe; + cohortId_CONTAINS?: InputMaybe; + cohortId_ENDS_WITH?: InputMaybe; + cohortId_IN?: InputMaybe>; + cohortId_NOT?: InputMaybe; + cohortId_NOT_CONTAINS?: InputMaybe; + cohortId_NOT_ENDS_WITH?: InputMaybe; + cohortId_NOT_IN?: InputMaybe>; + cohortId_NOT_STARTS_WITH?: InputMaybe; + cohortId_STARTS_WITH?: InputMaybe; + hasCohortCompleteCohortCompletesAggregate?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_ALL?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_NONE?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_SINGLE?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_SOME?: InputMaybe; + /** Return Cohorts where all of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_ALL?: InputMaybe; + /** Return Cohorts where none of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_NONE?: InputMaybe; + /** Return Cohorts where one of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_SINGLE?: InputMaybe; + /** Return Cohorts where some of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_SOME?: InputMaybe; + hasCohortSampleSamplesAggregate?: InputMaybe; + hasCohortSampleSamplesConnection_ALL?: InputMaybe; + hasCohortSampleSamplesConnection_NONE?: InputMaybe; + hasCohortSampleSamplesConnection_SINGLE?: InputMaybe; + hasCohortSampleSamplesConnection_SOME?: InputMaybe; + /** Return Cohorts where all of the related Samples match this filter */ + hasCohortSampleSamples_ALL?: InputMaybe; + /** Return Cohorts where none of the related Samples match this filter */ + hasCohortSampleSamples_NONE?: InputMaybe; + /** Return Cohorts where one of the related Samples match this filter */ + hasCohortSampleSamples_SINGLE?: InputMaybe; + /** Return Cohorts where some of the related Samples match this filter */ + hasCohortSampleSamples_SOME?: InputMaybe; +}; + +export type CohortsConnection = { + __typename?: "CohortsConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type PatientPatientAliasesIsAliasConnectionSort = { - node?: InputMaybe; +export type CreateBamCompletesMutationResponse = { + __typename?: "CreateBamCompletesMutationResponse"; + bamCompletes: Array; + info: CreateInfo; }; -export type PatientPatientAliasesIsAliasConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; +export type CreateCohortCompletesMutationResponse = { + __typename?: "CreateCohortCompletesMutationResponse"; + cohortCompletes: Array; + info: CreateInfo; }; -export type PatientPatientAliasesIsAliasCreateFieldInput = { - node: PatientAliasCreateInput; +export type CreateCohortsMutationResponse = { + __typename?: "CreateCohortsMutationResponse"; + cohorts: Array; + info: CreateInfo; }; -export type PatientPatientAliasesIsAliasDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; +export type CreateInfo = { + __typename?: "CreateInfo"; + bookmark?: Maybe; + nodesCreated: Scalars["Int"]; + relationshipsCreated: Scalars["Int"]; }; -export type PatientPatientAliasesIsAliasDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type CreateMafCompletesMutationResponse = { + __typename?: "CreateMafCompletesMutationResponse"; + info: CreateInfo; + mafCompletes: Array; }; -export type PatientPatientAliasesIsAliasFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type CreatePatientAliasesMutationResponse = { + __typename?: "CreatePatientAliasesMutationResponse"; + info: CreateInfo; + patientAliases: Array; }; -export type PatientPatientAliasesIsAliasNodeAggregationWhereInput = { - AND?: InputMaybe< - Array - >; - OR?: InputMaybe>; - namespace_AVERAGE_EQUAL?: InputMaybe; - namespace_AVERAGE_GT?: InputMaybe; - namespace_AVERAGE_GTE?: InputMaybe; - namespace_AVERAGE_LT?: InputMaybe; - namespace_AVERAGE_LTE?: InputMaybe; - namespace_EQUAL?: InputMaybe; - namespace_GT?: InputMaybe; - namespace_GTE?: InputMaybe; - namespace_LONGEST_EQUAL?: InputMaybe; - namespace_LONGEST_GT?: InputMaybe; - namespace_LONGEST_GTE?: InputMaybe; - namespace_LONGEST_LT?: InputMaybe; - namespace_LONGEST_LTE?: InputMaybe; - namespace_LT?: InputMaybe; - namespace_LTE?: InputMaybe; - namespace_SHORTEST_EQUAL?: InputMaybe; - namespace_SHORTEST_GT?: InputMaybe; - namespace_SHORTEST_GTE?: InputMaybe; - namespace_SHORTEST_LT?: InputMaybe; - namespace_SHORTEST_LTE?: InputMaybe; - value_AVERAGE_EQUAL?: InputMaybe; - value_AVERAGE_GT?: InputMaybe; - value_AVERAGE_GTE?: InputMaybe; - value_AVERAGE_LT?: InputMaybe; - value_AVERAGE_LTE?: InputMaybe; - value_EQUAL?: InputMaybe; - value_GT?: InputMaybe; - value_GTE?: InputMaybe; - value_LONGEST_EQUAL?: InputMaybe; - value_LONGEST_GT?: InputMaybe; - value_LONGEST_GTE?: InputMaybe; - value_LONGEST_LT?: InputMaybe; - value_LONGEST_LTE?: InputMaybe; - value_LT?: InputMaybe; - value_LTE?: InputMaybe; - value_SHORTEST_EQUAL?: InputMaybe; - value_SHORTEST_GT?: InputMaybe; - value_SHORTEST_GTE?: InputMaybe; - value_SHORTEST_LT?: InputMaybe; - value_SHORTEST_LTE?: InputMaybe; +export type CreatePatientsMutationResponse = { + __typename?: "CreatePatientsMutationResponse"; + info: CreateInfo; + patients: Array; }; -export type PatientPatientAliasesIsAliasRelationship = { - __typename?: "PatientPatientAliasesIsAliasRelationship"; - cursor: Scalars["String"]; - node: PatientAlias; +export type CreateProjectsMutationResponse = { + __typename?: "CreateProjectsMutationResponse"; + info: CreateInfo; + projects: Array; }; -export type PatientPatientAliasesIsAliasUpdateConnectionInput = { - node?: InputMaybe; +export type CreateQcCompletesMutationResponse = { + __typename?: "CreateQcCompletesMutationResponse"; + info: CreateInfo; + qcCompletes: Array; }; -export type PatientPatientAliasesIsAliasUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; - disconnect?: InputMaybe< - Array - >; - update?: InputMaybe; - where?: InputMaybe; +export type CreateRequestMetadataMutationResponse = { + __typename?: "CreateRequestMetadataMutationResponse"; + info: CreateInfo; + requestMetadata: Array; }; -export type PatientRelationInput = { - hasSampleSamples?: InputMaybe>; - patientAliasesIsAlias?: InputMaybe< - Array - >; +export type CreateRequestsMutationResponse = { + __typename?: "CreateRequestsMutationResponse"; + info: CreateInfo; + requests: Array; }; -export type PatientSampleHasSampleSamplesAggregationSelection = { - __typename?: "PatientSampleHasSampleSamplesAggregationSelection"; - count: Scalars["Int"]; - node?: Maybe; +export type CreateSampleAliasesMutationResponse = { + __typename?: "CreateSampleAliasesMutationResponse"; + info: CreateInfo; + sampleAliases: Array; }; -export type PatientSampleHasSampleSamplesNodeAggregateSelection = { - __typename?: "PatientSampleHasSampleSamplesNodeAggregateSelection"; - datasource: StringAggregateSelectionNonNullable; - sampleCategory: StringAggregateSelectionNonNullable; - sampleClass: StringAggregateSelectionNonNullable; - smileSampleId: StringAggregateSelectionNonNullable; +export type CreateSampleMetadataMutationResponse = { + __typename?: "CreateSampleMetadataMutationResponse"; + info: CreateInfo; + sampleMetadata: Array; }; -/** Fields to sort Patients by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientSort object. */ -export type PatientSort = { - smilePatientId?: InputMaybe; +export type CreateSamplesMutationResponse = { + __typename?: "CreateSamplesMutationResponse"; + info: CreateInfo; + samples: Array; }; -export type PatientUpdateInput = { - hasSampleSamples?: InputMaybe>; - patientAliasesIsAlias?: InputMaybe< - Array - >; - smilePatientId?: InputMaybe; +export type CreateStatusesMutationResponse = { + __typename?: "CreateStatusesMutationResponse"; + info: CreateInfo; + statuses: Array; }; -export type PatientWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - hasSampleSamplesAggregate?: InputMaybe; - hasSampleSamplesConnection_ALL?: InputMaybe; - hasSampleSamplesConnection_NONE?: InputMaybe; - hasSampleSamplesConnection_SINGLE?: InputMaybe; - hasSampleSamplesConnection_SOME?: InputMaybe; - /** Return Patients where all of the related Samples match this filter */ - hasSampleSamples_ALL?: InputMaybe; - /** Return Patients where none of the related Samples match this filter */ - hasSampleSamples_NONE?: InputMaybe; - /** Return Patients where one of the related Samples match this filter */ - hasSampleSamples_SINGLE?: InputMaybe; - /** Return Patients where some of the related Samples match this filter */ - hasSampleSamples_SOME?: InputMaybe; - patientAliasesIsAliasAggregate?: InputMaybe; - patientAliasesIsAliasConnection_ALL?: InputMaybe; - patientAliasesIsAliasConnection_NONE?: InputMaybe; - patientAliasesIsAliasConnection_SINGLE?: InputMaybe; - patientAliasesIsAliasConnection_SOME?: InputMaybe; - /** Return Patients where all of the related PatientAliases match this filter */ - patientAliasesIsAlias_ALL?: InputMaybe; - /** Return Patients where none of the related PatientAliases match this filter */ - patientAliasesIsAlias_NONE?: InputMaybe; - /** Return Patients where one of the related PatientAliases match this filter */ - patientAliasesIsAlias_SINGLE?: InputMaybe; - /** Return Patients where some of the related PatientAliases match this filter */ - patientAliasesIsAlias_SOME?: InputMaybe; - smilePatientId?: InputMaybe; - smilePatientId_CONTAINS?: InputMaybe; - smilePatientId_ENDS_WITH?: InputMaybe; - smilePatientId_IN?: InputMaybe>; - smilePatientId_NOT?: InputMaybe; - smilePatientId_NOT_CONTAINS?: InputMaybe; - smilePatientId_NOT_ENDS_WITH?: InputMaybe; - smilePatientId_NOT_IN?: InputMaybe>; - smilePatientId_NOT_STARTS_WITH?: InputMaybe; - smilePatientId_STARTS_WITH?: InputMaybe; +export type CreateTemposMutationResponse = { + __typename?: "CreateTemposMutationResponse"; + info: CreateInfo; + tempos: Array; }; -export type PatientsConnection = { - __typename?: "PatientsConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; +export type DeleteInfo = { + __typename?: "DeleteInfo"; + bookmark?: Maybe; + nodesDeleted: Scalars["Int"]; + relationshipsDeleted: Scalars["Int"]; }; -export type Project = { - __typename?: "Project"; - hasRequestRequests: Array; - hasRequestRequestsAggregate?: Maybe; - hasRequestRequestsConnection: ProjectHasRequestRequestsConnection; - igoProjectId: Scalars["String"]; - namespace: Scalars["String"]; +export type MafComplete = { + __typename?: "MafComplete"; + date: Scalars["String"]; + normalPrimaryId: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent: Array; + temposHasEventAggregate?: Maybe; + temposHasEventConnection: MafCompleteTemposHasEventConnection; }; -export type ProjectHasRequestRequestsArgs = { +export type MafCompleteTemposHasEventArgs = { directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsAggregateArgs = { +export type MafCompleteTemposHasEventAggregateArgs = { directed?: InputMaybe; - where?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsConnectionArgs = { +export type MafCompleteTemposHasEventConnectionArgs = { after?: InputMaybe; directed?: InputMaybe; first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; + where?: InputMaybe; }; -export type ProjectAggregateSelection = { - __typename?: "ProjectAggregateSelection"; +export type MafCompleteAggregateSelection = { + __typename?: "MafCompleteAggregateSelection"; count: Scalars["Int"]; - igoProjectId: StringAggregateSelectionNonNullable; - namespace: StringAggregateSelectionNonNullable; + date: StringAggregateSelectionNonNullable; + normalPrimaryId: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; }; -export type ProjectConnectInput = { - hasRequestRequests?: InputMaybe< - Array +export type MafCompleteConnectInput = { + temposHasEvent?: InputMaybe< + Array >; }; -export type ProjectConnectWhere = { - node: ProjectWhere; +export type MafCompleteConnectWhere = { + node: MafCompleteWhere; }; -export type ProjectCreateInput = { - hasRequestRequests?: InputMaybe; - igoProjectId: Scalars["String"]; - namespace: Scalars["String"]; +export type MafCompleteCreateInput = { + date: Scalars["String"]; + normalPrimaryId: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent?: InputMaybe; }; -export type ProjectDeleteInput = { - hasRequestRequests?: InputMaybe< - Array - >; +export type MafCompleteDeleteInput = { + temposHasEvent?: InputMaybe>; }; -export type ProjectDisconnectInput = { - hasRequestRequests?: InputMaybe< - Array +export type MafCompleteDisconnectInput = { + temposHasEvent?: InputMaybe< + Array >; }; -export type ProjectEdge = { - __typename?: "ProjectEdge"; +export type MafCompleteEdge = { + __typename?: "MafCompleteEdge"; cursor: Scalars["String"]; - node: Project; + node: MafComplete; }; -export type ProjectHasRequestRequestsAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type MafCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more MafCompleteSort objects to sort MafCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type MafCompleteRelationInput = { + temposHasEvent?: InputMaybe>; +}; + +/** Fields to sort MafCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one MafCompleteSort object. */ +export type MafCompleteSort = { + date?: InputMaybe; + normalPrimaryId?: InputMaybe; + status?: InputMaybe; +}; + +export type MafCompleteTempoTemposHasEventAggregationSelection = { + __typename?: "MafCompleteTempoTemposHasEventAggregationSelection"; + count: Scalars["Int"]; +}; + +export type MafCompleteTemposHasEventAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; count?: InputMaybe; count_GT?: InputMaybe; count_GTE?: InputMaybe; count_LT?: InputMaybe; count_LTE?: InputMaybe; - node?: InputMaybe; }; -export type ProjectHasRequestRequestsConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; +export type MafCompleteTemposHasEventConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsConnection = { - __typename?: "ProjectHasRequestRequestsConnection"; - edges: Array; +export type MafCompleteTemposHasEventConnection = { + __typename?: "MafCompleteTemposHasEventConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type ProjectHasRequestRequestsConnectionSort = { - node?: InputMaybe; +export type MafCompleteTemposHasEventConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type ProjectHasRequestRequestsConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; +export type MafCompleteTemposHasEventCreateFieldInput = { + node: TempoCreateInput; }; -export type ProjectHasRequestRequestsCreateFieldInput = { - node: RequestCreateInput; +export type MafCompleteTemposHasEventDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; +export type MafCompleteTemposHasEventDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type MafCompleteTemposHasEventFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; }; -export type ProjectHasRequestRequestsFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type MafCompleteTemposHasEventRelationship = { + __typename?: "MafCompleteTemposHasEventRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type MafCompleteTemposHasEventUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type MafCompleteTemposHasEventUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MafCompleteUpdateInput = { + date?: InputMaybe; + normalPrimaryId?: InputMaybe; + status?: InputMaybe; + temposHasEvent?: InputMaybe>; +}; + +export type MafCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + normalPrimaryId?: InputMaybe; + normalPrimaryId_CONTAINS?: InputMaybe; + normalPrimaryId_ENDS_WITH?: InputMaybe; + normalPrimaryId_IN?: InputMaybe>; + normalPrimaryId_NOT?: InputMaybe; + normalPrimaryId_NOT_CONTAINS?: InputMaybe; + normalPrimaryId_NOT_ENDS_WITH?: InputMaybe; + normalPrimaryId_NOT_IN?: InputMaybe>; + normalPrimaryId_NOT_STARTS_WITH?: InputMaybe; + normalPrimaryId_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + temposHasEventAggregate?: InputMaybe; + temposHasEventConnection_ALL?: InputMaybe; + temposHasEventConnection_NONE?: InputMaybe; + temposHasEventConnection_SINGLE?: InputMaybe; + temposHasEventConnection_SOME?: InputMaybe; + /** Return MafCompletes where all of the related Tempos match this filter */ + temposHasEvent_ALL?: InputMaybe; + /** Return MafCompletes where none of the related Tempos match this filter */ + temposHasEvent_NONE?: InputMaybe; + /** Return MafCompletes where one of the related Tempos match this filter */ + temposHasEvent_SINGLE?: InputMaybe; + /** Return MafCompletes where some of the related Tempos match this filter */ + temposHasEvent_SOME?: InputMaybe; +}; + +export type MafCompletesConnection = { + __typename?: "MafCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type ProjectHasRequestRequestsNodeAggregationWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - dataAccessEmails_AVERAGE_EQUAL?: InputMaybe; - dataAccessEmails_AVERAGE_GT?: InputMaybe; - dataAccessEmails_AVERAGE_GTE?: InputMaybe; - dataAccessEmails_AVERAGE_LT?: InputMaybe; - dataAccessEmails_AVERAGE_LTE?: InputMaybe; - dataAccessEmails_EQUAL?: InputMaybe; - dataAccessEmails_GT?: InputMaybe; - dataAccessEmails_GTE?: InputMaybe; - dataAccessEmails_LONGEST_EQUAL?: InputMaybe; - dataAccessEmails_LONGEST_GT?: InputMaybe; - dataAccessEmails_LONGEST_GTE?: InputMaybe; - dataAccessEmails_LONGEST_LT?: InputMaybe; - dataAccessEmails_LONGEST_LTE?: InputMaybe; - dataAccessEmails_LT?: InputMaybe; - dataAccessEmails_LTE?: InputMaybe; - dataAccessEmails_SHORTEST_EQUAL?: InputMaybe; - dataAccessEmails_SHORTEST_GT?: InputMaybe; - dataAccessEmails_SHORTEST_GTE?: InputMaybe; - dataAccessEmails_SHORTEST_LT?: InputMaybe; - dataAccessEmails_SHORTEST_LTE?: InputMaybe; - dataAnalystEmail_AVERAGE_EQUAL?: InputMaybe; - dataAnalystEmail_AVERAGE_GT?: InputMaybe; - dataAnalystEmail_AVERAGE_GTE?: InputMaybe; - dataAnalystEmail_AVERAGE_LT?: InputMaybe; - dataAnalystEmail_AVERAGE_LTE?: InputMaybe; - dataAnalystEmail_EQUAL?: InputMaybe; - dataAnalystEmail_GT?: InputMaybe; - dataAnalystEmail_GTE?: InputMaybe; - dataAnalystEmail_LONGEST_EQUAL?: InputMaybe; - dataAnalystEmail_LONGEST_GT?: InputMaybe; - dataAnalystEmail_LONGEST_GTE?: InputMaybe; - dataAnalystEmail_LONGEST_LT?: InputMaybe; - dataAnalystEmail_LONGEST_LTE?: InputMaybe; - dataAnalystEmail_LT?: InputMaybe; - dataAnalystEmail_LTE?: InputMaybe; - dataAnalystEmail_SHORTEST_EQUAL?: InputMaybe; - dataAnalystEmail_SHORTEST_GT?: InputMaybe; - dataAnalystEmail_SHORTEST_GTE?: InputMaybe; - dataAnalystEmail_SHORTEST_LT?: InputMaybe; - dataAnalystEmail_SHORTEST_LTE?: InputMaybe; - dataAnalystName_AVERAGE_EQUAL?: InputMaybe; - dataAnalystName_AVERAGE_GT?: InputMaybe; - dataAnalystName_AVERAGE_GTE?: InputMaybe; - dataAnalystName_AVERAGE_LT?: InputMaybe; - dataAnalystName_AVERAGE_LTE?: InputMaybe; - dataAnalystName_EQUAL?: InputMaybe; - dataAnalystName_GT?: InputMaybe; - dataAnalystName_GTE?: InputMaybe; - dataAnalystName_LONGEST_EQUAL?: InputMaybe; - dataAnalystName_LONGEST_GT?: InputMaybe; - dataAnalystName_LONGEST_GTE?: InputMaybe; - dataAnalystName_LONGEST_LT?: InputMaybe; - dataAnalystName_LONGEST_LTE?: InputMaybe; - dataAnalystName_LT?: InputMaybe; - dataAnalystName_LTE?: InputMaybe; - dataAnalystName_SHORTEST_EQUAL?: InputMaybe; - dataAnalystName_SHORTEST_GT?: InputMaybe; +export type Mutation = { + __typename?: "Mutation"; + createBamCompletes: CreateBamCompletesMutationResponse; + createCohortCompletes: CreateCohortCompletesMutationResponse; + createCohorts: CreateCohortsMutationResponse; + createMafCompletes: CreateMafCompletesMutationResponse; + createPatientAliases: CreatePatientAliasesMutationResponse; + createPatients: CreatePatientsMutationResponse; + createProjects: CreateProjectsMutationResponse; + createQcCompletes: CreateQcCompletesMutationResponse; + createRequestMetadata: CreateRequestMetadataMutationResponse; + createRequests: CreateRequestsMutationResponse; + createSampleAliases: CreateSampleAliasesMutationResponse; + createSampleMetadata: CreateSampleMetadataMutationResponse; + createSamples: CreateSamplesMutationResponse; + createStatuses: CreateStatusesMutationResponse; + createTempos: CreateTemposMutationResponse; + deleteBamCompletes: DeleteInfo; + deleteCohortCompletes: DeleteInfo; + deleteCohorts: DeleteInfo; + deleteMafCompletes: DeleteInfo; + deletePatientAliases: DeleteInfo; + deletePatients: DeleteInfo; + deleteProjects: DeleteInfo; + deleteQcCompletes: DeleteInfo; + deleteRequestMetadata: DeleteInfo; + deleteRequests: DeleteInfo; + deleteSampleAliases: DeleteInfo; + deleteSampleMetadata: DeleteInfo; + deleteSamples: DeleteInfo; + deleteStatuses: DeleteInfo; + deleteTempos: DeleteInfo; + updateBamCompletes: UpdateBamCompletesMutationResponse; + updateCohortCompletes: UpdateCohortCompletesMutationResponse; + updateCohorts: UpdateCohortsMutationResponse; + updateMafCompletes: UpdateMafCompletesMutationResponse; + updatePatientAliases: UpdatePatientAliasesMutationResponse; + updatePatients: UpdatePatientsMutationResponse; + updateProjects: UpdateProjectsMutationResponse; + updateQcCompletes: UpdateQcCompletesMutationResponse; + updateRequestMetadata: UpdateRequestMetadataMutationResponse; + updateRequests: UpdateRequestsMutationResponse; + updateSampleAliases: UpdateSampleAliasesMutationResponse; + updateSampleMetadata: UpdateSampleMetadataMutationResponse; + updateSamples: UpdateSamplesMutationResponse; + updateStatuses: UpdateStatusesMutationResponse; + updateTempos: UpdateTemposMutationResponse; +}; + +export type MutationCreateBamCompletesArgs = { + input: Array; +}; + +export type MutationCreateCohortCompletesArgs = { + input: Array; +}; + +export type MutationCreateCohortsArgs = { + input: Array; +}; + +export type MutationCreateMafCompletesArgs = { + input: Array; +}; + +export type MutationCreatePatientAliasesArgs = { + input: Array; +}; + +export type MutationCreatePatientsArgs = { + input: Array; +}; + +export type MutationCreateProjectsArgs = { + input: Array; +}; + +export type MutationCreateQcCompletesArgs = { + input: Array; +}; + +export type MutationCreateRequestMetadataArgs = { + input: Array; +}; + +export type MutationCreateRequestsArgs = { + input: Array; +}; + +export type MutationCreateSampleAliasesArgs = { + input: Array; +}; + +export type MutationCreateSampleMetadataArgs = { + input: Array; +}; + +export type MutationCreateSamplesArgs = { + input: Array; +}; + +export type MutationCreateStatusesArgs = { + input: Array; +}; + +export type MutationCreateTemposArgs = { + input: Array; +}; + +export type MutationDeleteBamCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteCohortCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteCohortsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteMafCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeletePatientAliasesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeletePatientsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteProjectsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteQcCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteRequestMetadataArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteRequestsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteSampleAliasesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteSampleMetadataArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteSamplesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteStatusesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteTemposArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateBamCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateCohortCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateCohortsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateMafCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdatePatientAliasesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdatePatientsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateProjectsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateQcCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateRequestMetadataArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateRequestsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateSampleAliasesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateSampleMetadataArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateSamplesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateStatusesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateTemposArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +/** Pagination information (Relay) */ +export type PageInfo = { + __typename?: "PageInfo"; + endCursor?: Maybe; + hasNextPage: Scalars["Boolean"]; + hasPreviousPage: Scalars["Boolean"]; + startCursor?: Maybe; +}; + +export type Patient = { + __typename?: "Patient"; + hasSampleSamples: Array; + hasSampleSamplesAggregate?: Maybe; + hasSampleSamplesConnection: PatientHasSampleSamplesConnection; + patientAliasesIsAlias: Array; + patientAliasesIsAliasAggregate?: Maybe; + patientAliasesIsAliasConnection: PatientPatientAliasesIsAliasConnection; + smilePatientId: Scalars["String"]; +}; + +export type PatientHasSampleSamplesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientAggregateSelection = { + __typename?: "PatientAggregateSelection"; + count: Scalars["Int"]; + smilePatientId: StringAggregateSelectionNonNullable; +}; + +export type PatientAlias = { + __typename?: "PatientAlias"; + isAliasPatients: Array; + isAliasPatientsAggregate?: Maybe; + isAliasPatientsConnection: PatientAliasIsAliasPatientsConnection; + namespace: Scalars["String"]; + value: Scalars["String"]; +}; + +export type PatientAliasIsAliasPatientsArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientAliasAggregateSelection = { + __typename?: "PatientAliasAggregateSelection"; + count: Scalars["Int"]; + namespace: StringAggregateSelectionNonNullable; + value: StringAggregateSelectionNonNullable; +}; + +export type PatientAliasConnectInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +export type PatientAliasConnectWhere = { + node: PatientAliasWhere; +}; + +export type PatientAliasCreateInput = { + isAliasPatients?: InputMaybe; + namespace: Scalars["String"]; + value: Scalars["String"]; +}; + +export type PatientAliasDeleteInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +export type PatientAliasDisconnectInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +export type PatientAliasEdge = { + __typename?: "PatientAliasEdge"; + cursor: Scalars["String"]; + node: PatientAlias; +}; + +export type PatientAliasIsAliasPatientsAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnection = { + __typename?: "PatientAliasIsAliasPatientsConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientAliasIsAliasPatientsConnectionSort = { + node?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsCreateFieldInput = { + node: PatientCreateInput; +}; + +export type PatientAliasIsAliasPatientsDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type PatientAliasIsAliasPatientsNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + smilePatientId_AVERAGE_EQUAL?: InputMaybe; + smilePatientId_AVERAGE_GT?: InputMaybe; + smilePatientId_AVERAGE_GTE?: InputMaybe; + smilePatientId_AVERAGE_LT?: InputMaybe; + smilePatientId_AVERAGE_LTE?: InputMaybe; + smilePatientId_EQUAL?: InputMaybe; + smilePatientId_GT?: InputMaybe; + smilePatientId_GTE?: InputMaybe; + smilePatientId_LONGEST_EQUAL?: InputMaybe; + smilePatientId_LONGEST_GT?: InputMaybe; + smilePatientId_LONGEST_GTE?: InputMaybe; + smilePatientId_LONGEST_LT?: InputMaybe; + smilePatientId_LONGEST_LTE?: InputMaybe; + smilePatientId_LT?: InputMaybe; + smilePatientId_LTE?: InputMaybe; + smilePatientId_SHORTEST_EQUAL?: InputMaybe; + smilePatientId_SHORTEST_GT?: InputMaybe; + smilePatientId_SHORTEST_GTE?: InputMaybe; + smilePatientId_SHORTEST_LT?: InputMaybe; + smilePatientId_SHORTEST_LTE?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsRelationship = { + __typename?: "PatientAliasIsAliasPatientsRelationship"; + cursor: Scalars["String"]; + node: Patient; +}; + +export type PatientAliasIsAliasPatientsUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more PatientAliasSort objects to sort PatientAliases by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type PatientAliasPatientIsAliasPatientsAggregationSelection = { + __typename?: "PatientAliasPatientIsAliasPatientsAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type PatientAliasPatientIsAliasPatientsNodeAggregateSelection = { + __typename?: "PatientAliasPatientIsAliasPatientsNodeAggregateSelection"; + smilePatientId: StringAggregateSelectionNonNullable; +}; + +export type PatientAliasRelationInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +/** Fields to sort PatientAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientAliasSort object. */ +export type PatientAliasSort = { + namespace?: InputMaybe; + value?: InputMaybe; +}; + +export type PatientAliasUpdateInput = { + isAliasPatients?: InputMaybe< + Array + >; + namespace?: InputMaybe; + value?: InputMaybe; +}; + +export type PatientAliasWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + isAliasPatientsAggregate?: InputMaybe; + isAliasPatientsConnection_ALL?: InputMaybe; + isAliasPatientsConnection_NONE?: InputMaybe; + isAliasPatientsConnection_SINGLE?: InputMaybe; + isAliasPatientsConnection_SOME?: InputMaybe; + /** Return PatientAliases where all of the related Patients match this filter */ + isAliasPatients_ALL?: InputMaybe; + /** Return PatientAliases where none of the related Patients match this filter */ + isAliasPatients_NONE?: InputMaybe; + /** Return PatientAliases where one of the related Patients match this filter */ + isAliasPatients_SINGLE?: InputMaybe; + /** Return PatientAliases where some of the related Patients match this filter */ + isAliasPatients_SOME?: InputMaybe; + namespace?: InputMaybe; + namespace_CONTAINS?: InputMaybe; + namespace_ENDS_WITH?: InputMaybe; + namespace_IN?: InputMaybe>; + namespace_NOT?: InputMaybe; + namespace_NOT_CONTAINS?: InputMaybe; + namespace_NOT_ENDS_WITH?: InputMaybe; + namespace_NOT_IN?: InputMaybe>; + namespace_NOT_STARTS_WITH?: InputMaybe; + namespace_STARTS_WITH?: InputMaybe; + value?: InputMaybe; + value_CONTAINS?: InputMaybe; + value_ENDS_WITH?: InputMaybe; + value_IN?: InputMaybe>; + value_NOT?: InputMaybe; + value_NOT_CONTAINS?: InputMaybe; + value_NOT_ENDS_WITH?: InputMaybe; + value_NOT_IN?: InputMaybe>; + value_NOT_STARTS_WITH?: InputMaybe; + value_STARTS_WITH?: InputMaybe; +}; + +export type PatientAliasesConnection = { + __typename?: "PatientAliasesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientConnectInput = { + hasSampleSamples?: InputMaybe< + Array + >; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientConnectWhere = { + node: PatientWhere; +}; + +export type PatientCreateInput = { + hasSampleSamples?: InputMaybe; + patientAliasesIsAlias?: InputMaybe; + smilePatientId: Scalars["String"]; +}; + +export type PatientDeleteInput = { + hasSampleSamples?: InputMaybe>; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientDisconnectInput = { + hasSampleSamples?: InputMaybe< + Array + >; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientEdge = { + __typename?: "PatientEdge"; + cursor: Scalars["String"]; + node: Patient; +}; + +export type PatientHasSampleSamplesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnection = { + __typename?: "PatientHasSampleSamplesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientHasSampleSamplesConnectionSort = { + node?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type PatientHasSampleSamplesCreateFieldInput = { + node: SampleCreateInput; +}; + +export type PatientHasSampleSamplesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type PatientHasSampleSamplesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + datasource_AVERAGE_EQUAL?: InputMaybe; + datasource_AVERAGE_GT?: InputMaybe; + datasource_AVERAGE_GTE?: InputMaybe; + datasource_AVERAGE_LT?: InputMaybe; + datasource_AVERAGE_LTE?: InputMaybe; + datasource_EQUAL?: InputMaybe; + datasource_GT?: InputMaybe; + datasource_GTE?: InputMaybe; + datasource_LONGEST_EQUAL?: InputMaybe; + datasource_LONGEST_GT?: InputMaybe; + datasource_LONGEST_GTE?: InputMaybe; + datasource_LONGEST_LT?: InputMaybe; + datasource_LONGEST_LTE?: InputMaybe; + datasource_LT?: InputMaybe; + datasource_LTE?: InputMaybe; + datasource_SHORTEST_EQUAL?: InputMaybe; + datasource_SHORTEST_GT?: InputMaybe; + datasource_SHORTEST_GTE?: InputMaybe; + datasource_SHORTEST_LT?: InputMaybe; + datasource_SHORTEST_LTE?: InputMaybe; + sampleCategory_AVERAGE_EQUAL?: InputMaybe; + sampleCategory_AVERAGE_GT?: InputMaybe; + sampleCategory_AVERAGE_GTE?: InputMaybe; + sampleCategory_AVERAGE_LT?: InputMaybe; + sampleCategory_AVERAGE_LTE?: InputMaybe; + sampleCategory_EQUAL?: InputMaybe; + sampleCategory_GT?: InputMaybe; + sampleCategory_GTE?: InputMaybe; + sampleCategory_LONGEST_EQUAL?: InputMaybe; + sampleCategory_LONGEST_GT?: InputMaybe; + sampleCategory_LONGEST_GTE?: InputMaybe; + sampleCategory_LONGEST_LT?: InputMaybe; + sampleCategory_LONGEST_LTE?: InputMaybe; + sampleCategory_LT?: InputMaybe; + sampleCategory_LTE?: InputMaybe; + sampleCategory_SHORTEST_EQUAL?: InputMaybe; + sampleCategory_SHORTEST_GT?: InputMaybe; + sampleCategory_SHORTEST_GTE?: InputMaybe; + sampleCategory_SHORTEST_LT?: InputMaybe; + sampleCategory_SHORTEST_LTE?: InputMaybe; + sampleClass_AVERAGE_EQUAL?: InputMaybe; + sampleClass_AVERAGE_GT?: InputMaybe; + sampleClass_AVERAGE_GTE?: InputMaybe; + sampleClass_AVERAGE_LT?: InputMaybe; + sampleClass_AVERAGE_LTE?: InputMaybe; + sampleClass_EQUAL?: InputMaybe; + sampleClass_GT?: InputMaybe; + sampleClass_GTE?: InputMaybe; + sampleClass_LONGEST_EQUAL?: InputMaybe; + sampleClass_LONGEST_GT?: InputMaybe; + sampleClass_LONGEST_GTE?: InputMaybe; + sampleClass_LONGEST_LT?: InputMaybe; + sampleClass_LONGEST_LTE?: InputMaybe; + sampleClass_LT?: InputMaybe; + sampleClass_LTE?: InputMaybe; + sampleClass_SHORTEST_EQUAL?: InputMaybe; + sampleClass_SHORTEST_GT?: InputMaybe; + sampleClass_SHORTEST_GTE?: InputMaybe; + sampleClass_SHORTEST_LT?: InputMaybe; + sampleClass_SHORTEST_LTE?: InputMaybe; + smileSampleId_AVERAGE_EQUAL?: InputMaybe; + smileSampleId_AVERAGE_GT?: InputMaybe; + smileSampleId_AVERAGE_GTE?: InputMaybe; + smileSampleId_AVERAGE_LT?: InputMaybe; + smileSampleId_AVERAGE_LTE?: InputMaybe; + smileSampleId_EQUAL?: InputMaybe; + smileSampleId_GT?: InputMaybe; + smileSampleId_GTE?: InputMaybe; + smileSampleId_LONGEST_EQUAL?: InputMaybe; + smileSampleId_LONGEST_GT?: InputMaybe; + smileSampleId_LONGEST_GTE?: InputMaybe; + smileSampleId_LONGEST_LT?: InputMaybe; + smileSampleId_LONGEST_LTE?: InputMaybe; + smileSampleId_LT?: InputMaybe; + smileSampleId_LTE?: InputMaybe; + smileSampleId_SHORTEST_EQUAL?: InputMaybe; + smileSampleId_SHORTEST_GT?: InputMaybe; + smileSampleId_SHORTEST_GTE?: InputMaybe; + smileSampleId_SHORTEST_LT?: InputMaybe; + smileSampleId_SHORTEST_LTE?: InputMaybe; +}; + +export type PatientHasSampleSamplesRelationship = { + __typename?: "PatientHasSampleSamplesRelationship"; + cursor: Scalars["String"]; + node: Sample; +}; + +export type PatientHasSampleSamplesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type PatientHasSampleSamplesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientIdsTriplet = { + __typename?: "PatientIdsTriplet"; + CMO_ID?: Maybe; + DMP_ID?: Maybe; + PT_MRN?: Maybe; +}; + +export type PatientOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more PatientSort objects to sort Patients by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type PatientPatientAliasPatientAliasesIsAliasAggregationSelection = { + __typename?: "PatientPatientAliasPatientAliasesIsAliasAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection = { + __typename?: "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection"; + namespace: StringAggregateSelectionNonNullable; + value: StringAggregateSelectionNonNullable; +}; + +export type PatientPatientAliasesIsAliasAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnection = { + __typename?: "PatientPatientAliasesIsAliasConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientPatientAliasesIsAliasConnectionSort = { + node?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasCreateFieldInput = { + node: PatientAliasCreateInput; +}; + +export type PatientPatientAliasesIsAliasDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type PatientPatientAliasesIsAliasNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + namespace_AVERAGE_EQUAL?: InputMaybe; + namespace_AVERAGE_GT?: InputMaybe; + namespace_AVERAGE_GTE?: InputMaybe; + namespace_AVERAGE_LT?: InputMaybe; + namespace_AVERAGE_LTE?: InputMaybe; + namespace_EQUAL?: InputMaybe; + namespace_GT?: InputMaybe; + namespace_GTE?: InputMaybe; + namespace_LONGEST_EQUAL?: InputMaybe; + namespace_LONGEST_GT?: InputMaybe; + namespace_LONGEST_GTE?: InputMaybe; + namespace_LONGEST_LT?: InputMaybe; + namespace_LONGEST_LTE?: InputMaybe; + namespace_LT?: InputMaybe; + namespace_LTE?: InputMaybe; + namespace_SHORTEST_EQUAL?: InputMaybe; + namespace_SHORTEST_GT?: InputMaybe; + namespace_SHORTEST_GTE?: InputMaybe; + namespace_SHORTEST_LT?: InputMaybe; + namespace_SHORTEST_LTE?: InputMaybe; + value_AVERAGE_EQUAL?: InputMaybe; + value_AVERAGE_GT?: InputMaybe; + value_AVERAGE_GTE?: InputMaybe; + value_AVERAGE_LT?: InputMaybe; + value_AVERAGE_LTE?: InputMaybe; + value_EQUAL?: InputMaybe; + value_GT?: InputMaybe; + value_GTE?: InputMaybe; + value_LONGEST_EQUAL?: InputMaybe; + value_LONGEST_GT?: InputMaybe; + value_LONGEST_GTE?: InputMaybe; + value_LONGEST_LT?: InputMaybe; + value_LONGEST_LTE?: InputMaybe; + value_LT?: InputMaybe; + value_LTE?: InputMaybe; + value_SHORTEST_EQUAL?: InputMaybe; + value_SHORTEST_GT?: InputMaybe; + value_SHORTEST_GTE?: InputMaybe; + value_SHORTEST_LT?: InputMaybe; + value_SHORTEST_LTE?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasRelationship = { + __typename?: "PatientPatientAliasesIsAliasRelationship"; + cursor: Scalars["String"]; + node: PatientAlias; +}; + +export type PatientPatientAliasesIsAliasUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientRelationInput = { + hasSampleSamples?: InputMaybe>; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientSampleHasSampleSamplesAggregationSelection = { + __typename?: "PatientSampleHasSampleSamplesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type PatientSampleHasSampleSamplesNodeAggregateSelection = { + __typename?: "PatientSampleHasSampleSamplesNodeAggregateSelection"; + datasource: StringAggregateSelectionNonNullable; + sampleCategory: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + smileSampleId: StringAggregateSelectionNonNullable; +}; + +/** Fields to sort Patients by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientSort object. */ +export type PatientSort = { + smilePatientId?: InputMaybe; +}; + +export type PatientUpdateInput = { + hasSampleSamples?: InputMaybe>; + patientAliasesIsAlias?: InputMaybe< + Array + >; + smilePatientId?: InputMaybe; +}; + +export type PatientWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + hasSampleSamplesAggregate?: InputMaybe; + hasSampleSamplesConnection_ALL?: InputMaybe; + hasSampleSamplesConnection_NONE?: InputMaybe; + hasSampleSamplesConnection_SINGLE?: InputMaybe; + hasSampleSamplesConnection_SOME?: InputMaybe; + /** Return Patients where all of the related Samples match this filter */ + hasSampleSamples_ALL?: InputMaybe; + /** Return Patients where none of the related Samples match this filter */ + hasSampleSamples_NONE?: InputMaybe; + /** Return Patients where one of the related Samples match this filter */ + hasSampleSamples_SINGLE?: InputMaybe; + /** Return Patients where some of the related Samples match this filter */ + hasSampleSamples_SOME?: InputMaybe; + patientAliasesIsAliasAggregate?: InputMaybe; + patientAliasesIsAliasConnection_ALL?: InputMaybe; + patientAliasesIsAliasConnection_NONE?: InputMaybe; + patientAliasesIsAliasConnection_SINGLE?: InputMaybe; + patientAliasesIsAliasConnection_SOME?: InputMaybe; + /** Return Patients where all of the related PatientAliases match this filter */ + patientAliasesIsAlias_ALL?: InputMaybe; + /** Return Patients where none of the related PatientAliases match this filter */ + patientAliasesIsAlias_NONE?: InputMaybe; + /** Return Patients where one of the related PatientAliases match this filter */ + patientAliasesIsAlias_SINGLE?: InputMaybe; + /** Return Patients where some of the related PatientAliases match this filter */ + patientAliasesIsAlias_SOME?: InputMaybe; + smilePatientId?: InputMaybe; + smilePatientId_CONTAINS?: InputMaybe; + smilePatientId_ENDS_WITH?: InputMaybe; + smilePatientId_IN?: InputMaybe>; + smilePatientId_NOT?: InputMaybe; + smilePatientId_NOT_CONTAINS?: InputMaybe; + smilePatientId_NOT_ENDS_WITH?: InputMaybe; + smilePatientId_NOT_IN?: InputMaybe>; + smilePatientId_NOT_STARTS_WITH?: InputMaybe; + smilePatientId_STARTS_WITH?: InputMaybe; +}; + +export type PatientsConnection = { + __typename?: "PatientsConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type Project = { + __typename?: "Project"; + hasRequestRequests: Array; + hasRequestRequestsAggregate?: Maybe; + hasRequestRequestsConnection: ProjectHasRequestRequestsConnection; + igoProjectId: Scalars["String"]; + namespace: Scalars["String"]; +}; + +export type ProjectHasRequestRequestsArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type ProjectAggregateSelection = { + __typename?: "ProjectAggregateSelection"; + count: Scalars["Int"]; + igoProjectId: StringAggregateSelectionNonNullable; + namespace: StringAggregateSelectionNonNullable; +}; + +export type ProjectConnectInput = { + hasRequestRequests?: InputMaybe< + Array + >; +}; + +export type ProjectConnectWhere = { + node: ProjectWhere; +}; + +export type ProjectCreateInput = { + hasRequestRequests?: InputMaybe; + igoProjectId: Scalars["String"]; + namespace: Scalars["String"]; +}; + +export type ProjectDeleteInput = { + hasRequestRequests?: InputMaybe< + Array + >; +}; + +export type ProjectDisconnectInput = { + hasRequestRequests?: InputMaybe< + Array + >; +}; + +export type ProjectEdge = { + __typename?: "ProjectEdge"; + cursor: Scalars["String"]; + node: Project; +}; + +export type ProjectHasRequestRequestsAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnection = { + __typename?: "ProjectHasRequestRequestsConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type ProjectHasRequestRequestsConnectionSort = { + node?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type ProjectHasRequestRequestsCreateFieldInput = { + node: RequestCreateInput; +}; + +export type ProjectHasRequestRequestsDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type ProjectHasRequestRequestsNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + dataAccessEmails_AVERAGE_EQUAL?: InputMaybe; + dataAccessEmails_AVERAGE_GT?: InputMaybe; + dataAccessEmails_AVERAGE_GTE?: InputMaybe; + dataAccessEmails_AVERAGE_LT?: InputMaybe; + dataAccessEmails_AVERAGE_LTE?: InputMaybe; + dataAccessEmails_EQUAL?: InputMaybe; + dataAccessEmails_GT?: InputMaybe; + dataAccessEmails_GTE?: InputMaybe; + dataAccessEmails_LONGEST_EQUAL?: InputMaybe; + dataAccessEmails_LONGEST_GT?: InputMaybe; + dataAccessEmails_LONGEST_GTE?: InputMaybe; + dataAccessEmails_LONGEST_LT?: InputMaybe; + dataAccessEmails_LONGEST_LTE?: InputMaybe; + dataAccessEmails_LT?: InputMaybe; + dataAccessEmails_LTE?: InputMaybe; + dataAccessEmails_SHORTEST_EQUAL?: InputMaybe; + dataAccessEmails_SHORTEST_GT?: InputMaybe; + dataAccessEmails_SHORTEST_GTE?: InputMaybe; + dataAccessEmails_SHORTEST_LT?: InputMaybe; + dataAccessEmails_SHORTEST_LTE?: InputMaybe; + dataAnalystEmail_AVERAGE_EQUAL?: InputMaybe; + dataAnalystEmail_AVERAGE_GT?: InputMaybe; + dataAnalystEmail_AVERAGE_GTE?: InputMaybe; + dataAnalystEmail_AVERAGE_LT?: InputMaybe; + dataAnalystEmail_AVERAGE_LTE?: InputMaybe; + dataAnalystEmail_EQUAL?: InputMaybe; + dataAnalystEmail_GT?: InputMaybe; + dataAnalystEmail_GTE?: InputMaybe; + dataAnalystEmail_LONGEST_EQUAL?: InputMaybe; + dataAnalystEmail_LONGEST_GT?: InputMaybe; + dataAnalystEmail_LONGEST_GTE?: InputMaybe; + dataAnalystEmail_LONGEST_LT?: InputMaybe; + dataAnalystEmail_LONGEST_LTE?: InputMaybe; + dataAnalystEmail_LT?: InputMaybe; + dataAnalystEmail_LTE?: InputMaybe; + dataAnalystEmail_SHORTEST_EQUAL?: InputMaybe; + dataAnalystEmail_SHORTEST_GT?: InputMaybe; + dataAnalystEmail_SHORTEST_GTE?: InputMaybe; + dataAnalystEmail_SHORTEST_LT?: InputMaybe; + dataAnalystEmail_SHORTEST_LTE?: InputMaybe; + dataAnalystName_AVERAGE_EQUAL?: InputMaybe; + dataAnalystName_AVERAGE_GT?: InputMaybe; + dataAnalystName_AVERAGE_GTE?: InputMaybe; + dataAnalystName_AVERAGE_LT?: InputMaybe; + dataAnalystName_AVERAGE_LTE?: InputMaybe; + dataAnalystName_EQUAL?: InputMaybe; + dataAnalystName_GT?: InputMaybe; + dataAnalystName_GTE?: InputMaybe; + dataAnalystName_LONGEST_EQUAL?: InputMaybe; + dataAnalystName_LONGEST_GT?: InputMaybe; + dataAnalystName_LONGEST_GTE?: InputMaybe; + dataAnalystName_LONGEST_LT?: InputMaybe; + dataAnalystName_LONGEST_LTE?: InputMaybe; + dataAnalystName_LT?: InputMaybe; + dataAnalystName_LTE?: InputMaybe; + dataAnalystName_SHORTEST_EQUAL?: InputMaybe; + dataAnalystName_SHORTEST_GT?: InputMaybe; dataAnalystName_SHORTEST_GTE?: InputMaybe; dataAnalystName_SHORTEST_LT?: InputMaybe; dataAnalystName_SHORTEST_LTE?: InputMaybe; @@ -1651,8 +3175,254 @@ export type ProjectsConnection = { totalCount: Scalars["Int"]; }; +export type QcComplete = { + __typename?: "QcComplete"; + date: Scalars["String"]; + reason: Scalars["String"]; + result: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent: Array; + temposHasEventAggregate?: Maybe; + temposHasEventConnection: QcCompleteTemposHasEventConnection; +}; + +export type QcCompleteTemposHasEventArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteAggregateSelection = { + __typename?: "QcCompleteAggregateSelection"; + count: Scalars["Int"]; + date: StringAggregateSelectionNonNullable; + reason: StringAggregateSelectionNonNullable; + result: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; + +export type QcCompleteConnectInput = { + temposHasEvent?: InputMaybe>; +}; + +export type QcCompleteConnectWhere = { + node: QcCompleteWhere; +}; + +export type QcCompleteCreateInput = { + date: Scalars["String"]; + reason: Scalars["String"]; + result: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent?: InputMaybe; +}; + +export type QcCompleteDeleteInput = { + temposHasEvent?: InputMaybe>; +}; + +export type QcCompleteDisconnectInput = { + temposHasEvent?: InputMaybe< + Array + >; +}; + +export type QcCompleteEdge = { + __typename?: "QcCompleteEdge"; + cursor: Scalars["String"]; + node: QcComplete; +}; + +export type QcCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more QcCompleteSort objects to sort QcCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type QcCompleteRelationInput = { + temposHasEvent?: InputMaybe>; +}; + +/** Fields to sort QcCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one QcCompleteSort object. */ +export type QcCompleteSort = { + date?: InputMaybe; + reason?: InputMaybe; + result?: InputMaybe; + status?: InputMaybe; +}; + +export type QcCompleteTempoTemposHasEventAggregationSelection = { + __typename?: "QcCompleteTempoTemposHasEventAggregationSelection"; + count: Scalars["Int"]; +}; + +export type QcCompleteTemposHasEventAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; +}; + +export type QcCompleteTemposHasEventConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventConnection = { + __typename?: "QcCompleteTemposHasEventConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type QcCompleteTemposHasEventConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type QcCompleteTemposHasEventCreateFieldInput = { + node: TempoCreateInput; +}; + +export type QcCompleteTemposHasEventDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type QcCompleteTemposHasEventRelationship = { + __typename?: "QcCompleteTemposHasEventRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type QcCompleteTemposHasEventUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type QcCompleteTemposHasEventUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteUpdateInput = { + date?: InputMaybe; + reason?: InputMaybe; + result?: InputMaybe; + status?: InputMaybe; + temposHasEvent?: InputMaybe>; +}; + +export type QcCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + reason?: InputMaybe; + reason_CONTAINS?: InputMaybe; + reason_ENDS_WITH?: InputMaybe; + reason_IN?: InputMaybe>; + reason_NOT?: InputMaybe; + reason_NOT_CONTAINS?: InputMaybe; + reason_NOT_ENDS_WITH?: InputMaybe; + reason_NOT_IN?: InputMaybe>; + reason_NOT_STARTS_WITH?: InputMaybe; + reason_STARTS_WITH?: InputMaybe; + result?: InputMaybe; + result_CONTAINS?: InputMaybe; + result_ENDS_WITH?: InputMaybe; + result_IN?: InputMaybe>; + result_NOT?: InputMaybe; + result_NOT_CONTAINS?: InputMaybe; + result_NOT_ENDS_WITH?: InputMaybe; + result_NOT_IN?: InputMaybe>; + result_NOT_STARTS_WITH?: InputMaybe; + result_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + temposHasEventAggregate?: InputMaybe; + temposHasEventConnection_ALL?: InputMaybe; + temposHasEventConnection_NONE?: InputMaybe; + temposHasEventConnection_SINGLE?: InputMaybe; + temposHasEventConnection_SOME?: InputMaybe; + /** Return QcCompletes where all of the related Tempos match this filter */ + temposHasEvent_ALL?: InputMaybe; + /** Return QcCompletes where none of the related Tempos match this filter */ + temposHasEvent_NONE?: InputMaybe; + /** Return QcCompletes where one of the related Tempos match this filter */ + temposHasEvent_SINGLE?: InputMaybe; + /** Return QcCompletes where some of the related Tempos match this filter */ + temposHasEvent_SOME?: InputMaybe; +}; + +export type QcCompletesConnection = { + __typename?: "QcCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + export type Query = { __typename?: "Query"; + bamCompletes: Array; + bamCompletesAggregate: BamCompleteAggregateSelection; + bamCompletesConnection: BamCompletesConnection; + cohortCompletes: Array; + cohortCompletesAggregate: CohortCompleteAggregateSelection; + cohortCompletesConnection: CohortCompletesConnection; + cohorts: Array; + cohortsAggregate: CohortAggregateSelection; + cohortsConnection: CohortsConnection; + mafCompletes: Array; + mafCompletesAggregate: MafCompleteAggregateSelection; + mafCompletesConnection: MafCompletesConnection; patientAliases: Array; patientAliasesAggregate: PatientAliasAggregateSelection; patientAliasesConnection: PatientAliasesConnection; @@ -1663,6 +3433,9 @@ export type Query = { projects: Array; projectsAggregate: ProjectAggregateSelection; projectsConnection: ProjectsConnection; + qcCompletes: Array; + qcCompletesAggregate: QcCompleteAggregateSelection; + qcCompletesConnection: QcCompletesConnection; requestMetadata: Array; requestMetadataAggregate: RequestMetadataAggregateSelection; requestMetadataConnection: RequestMetadataConnection; @@ -1681,6 +3454,73 @@ export type Query = { statuses: Array; statusesAggregate: StatusAggregateSelection; statusesConnection: StatusesConnection; + tempos: Array; + temposAggregate: TempoAggregateSelection; + temposConnection: TemposConnection; +}; + +export type QueryBamCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryBamCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryBamCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + +export type QueryCohortCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryCohortCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryCohortCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + +export type QueryCohortsArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryCohortsAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryCohortsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + +export type QueryMafCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryMafCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryMafCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; }; export type QueryPatientAliasesArgs = { @@ -1735,6 +3575,22 @@ export type QueryProjectsConnectionArgs = { where?: InputMaybe; }; +export type QueryQcCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryQcCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryQcCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + export type QueryRequestMetadataArgs = { options?: InputMaybe; where?: InputMaybe; @@ -1831,6 +3687,21 @@ export type QueryStatusesConnectionArgs = { where?: InputMaybe; }; +export type QueryTemposArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryTemposAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryTemposConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; +}; + export type Request = { __typename?: "Request"; bicAnalysis: Scalars["Boolean"]; @@ -3635,10 +5506,16 @@ export type RequestsConnection = { export type Sample = { __typename?: "Sample"; + cohortsHasCohortSample: Array; + cohortsHasCohortSampleAggregate?: Maybe; + cohortsHasCohortSampleConnection: SampleCohortsHasCohortSampleConnection; datasource: Scalars["String"]; hasMetadataSampleMetadata: Array; hasMetadataSampleMetadataAggregate?: Maybe; hasMetadataSampleMetadataConnection: SampleHasMetadataSampleMetadataConnection; + hasTempoTempos: Array; + hasTempoTemposAggregate?: Maybe; + hasTempoTemposConnection: SampleHasTempoTemposConnection; patientsHasSample: Array; patientsHasSampleAggregate?: Maybe; patientsHasSampleConnection: SamplePatientsHasSampleConnection; @@ -3654,6 +5531,25 @@ export type Sample = { smileSampleId: Scalars["String"]; }; +export type SampleCohortsHasCohortSampleArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + export type SampleHasMetadataSampleMetadataArgs = { directed?: InputMaybe; options?: InputMaybe; @@ -3673,6 +5569,24 @@ export type SampleHasMetadataSampleMetadataConnectionArgs = { where?: InputMaybe; }; +export type SampleHasTempoTemposArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; +}; + export type SamplePatientsHasSampleArgs = { directed?: InputMaybe; options?: InputMaybe; @@ -4045,10 +5959,126 @@ export type SampleAliasesConnection = { totalCount: Scalars["Int"]; }; +export type SampleCohortCohortsHasCohortSampleAggregationSelection = { + __typename?: "SampleCohortCohortsHasCohortSampleAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type SampleCohortCohortsHasCohortSampleNodeAggregateSelection = { + __typename?: "SampleCohortCohortsHasCohortSampleNodeAggregateSelection"; + cohortId: StringAggregateSelectionNonNullable; +}; + +export type SampleCohortsHasCohortSampleAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnection = { + __typename?: "SampleCohortsHasCohortSampleConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type SampleCohortsHasCohortSampleConnectionSort = { + node?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleCreateFieldInput = { + node: CohortCreateInput; +}; + +export type SampleCohortsHasCohortSampleDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type SampleCohortsHasCohortSampleNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + cohortId_AVERAGE_EQUAL?: InputMaybe; + cohortId_AVERAGE_GT?: InputMaybe; + cohortId_AVERAGE_GTE?: InputMaybe; + cohortId_AVERAGE_LT?: InputMaybe; + cohortId_AVERAGE_LTE?: InputMaybe; + cohortId_EQUAL?: InputMaybe; + cohortId_GT?: InputMaybe; + cohortId_GTE?: InputMaybe; + cohortId_LONGEST_EQUAL?: InputMaybe; + cohortId_LONGEST_GT?: InputMaybe; + cohortId_LONGEST_GTE?: InputMaybe; + cohortId_LONGEST_LT?: InputMaybe; + cohortId_LONGEST_LTE?: InputMaybe; + cohortId_LT?: InputMaybe; + cohortId_LTE?: InputMaybe; + cohortId_SHORTEST_EQUAL?: InputMaybe; + cohortId_SHORTEST_GT?: InputMaybe; + cohortId_SHORTEST_GTE?: InputMaybe; + cohortId_SHORTEST_LT?: InputMaybe; + cohortId_SHORTEST_LTE?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleRelationship = { + __typename?: "SampleCohortsHasCohortSampleRelationship"; + cursor: Scalars["String"]; + node: Cohort; +}; + +export type SampleCohortsHasCohortSampleUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + export type SampleConnectInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -4065,8 +6095,10 @@ export type SampleConnectWhere = { }; export type SampleCreateInput = { + cohortsHasCohortSample?: InputMaybe; datasource: Scalars["String"]; hasMetadataSampleMetadata?: InputMaybe; + hasTempoTempos?: InputMaybe; patientsHasSample?: InputMaybe; requestsHasSample?: InputMaybe; revisable: Scalars["Boolean"]; @@ -4077,9 +6109,13 @@ export type SampleCreateInput = { }; export type SampleDeleteInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -4092,9 +6128,13 @@ export type SampleDeleteInput = { }; export type SampleDisconnectInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -4715,6 +6755,73 @@ export type SampleHasMetadataSampleMetadataUpdateFieldInput = { where?: InputMaybe; }; +export type SampleHasTempoTemposAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; +}; + +export type SampleHasTempoTemposConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposConnection = { + __typename?: "SampleHasTempoTemposConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type SampleHasTempoTemposConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type SampleHasTempoTemposCreateFieldInput = { + node: TempoCreateInput; +}; + +export type SampleHasTempoTemposDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type SampleHasTempoTemposRelationship = { + __typename?: "SampleHasTempoTemposRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type SampleHasTempoTemposUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type SampleHasTempoTemposUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + export type SampleMetadata = { __typename?: "SampleMetadata"; additionalProperties: Scalars["String"]; @@ -5686,9 +7793,13 @@ export type SamplePatientsHasSampleUpdateFieldInput = { }; export type SampleRelationInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -6364,11 +8475,20 @@ export type SampleSort = { smileSampleId?: InputMaybe; }; +export type SampleTempoHasTempoTemposAggregationSelection = { + __typename?: "SampleTempoHasTempoTemposAggregationSelection"; + count: Scalars["Int"]; +}; + export type SampleUpdateInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; datasource?: InputMaybe; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -6387,6 +8507,19 @@ export type SampleUpdateInput = { export type SampleWhere = { AND?: InputMaybe>; OR?: InputMaybe>; + cohortsHasCohortSampleAggregate?: InputMaybe; + cohortsHasCohortSampleConnection_ALL?: InputMaybe; + cohortsHasCohortSampleConnection_NONE?: InputMaybe; + cohortsHasCohortSampleConnection_SINGLE?: InputMaybe; + cohortsHasCohortSampleConnection_SOME?: InputMaybe; + /** Return Samples where all of the related Cohorts match this filter */ + cohortsHasCohortSample_ALL?: InputMaybe; + /** Return Samples where none of the related Cohorts match this filter */ + cohortsHasCohortSample_NONE?: InputMaybe; + /** Return Samples where one of the related Cohorts match this filter */ + cohortsHasCohortSample_SINGLE?: InputMaybe; + /** Return Samples where some of the related Cohorts match this filter */ + cohortsHasCohortSample_SOME?: InputMaybe; datasource?: InputMaybe; datasource_CONTAINS?: InputMaybe; datasource_ENDS_WITH?: InputMaybe; @@ -6410,6 +8543,19 @@ export type SampleWhere = { hasMetadataSampleMetadata_SINGLE?: InputMaybe; /** Return Samples where some of the related SampleMetadata match this filter */ hasMetadataSampleMetadata_SOME?: InputMaybe; + hasTempoTemposAggregate?: InputMaybe; + hasTempoTemposConnection_ALL?: InputMaybe; + hasTempoTemposConnection_NONE?: InputMaybe; + hasTempoTemposConnection_SINGLE?: InputMaybe; + hasTempoTemposConnection_SOME?: InputMaybe; + /** Return Samples where all of the related Tempos match this filter */ + hasTempoTempos_ALL?: InputMaybe; + /** Return Samples where none of the related Tempos match this filter */ + hasTempoTempos_NONE?: InputMaybe; + /** Return Samples where one of the related Tempos match this filter */ + hasTempoTempos_SINGLE?: InputMaybe; + /** Return Samples where some of the related Tempos match this filter */ + hasTempoTempos_SOME?: InputMaybe; patientsHasSampleAggregate?: InputMaybe; patientsHasSampleConnection_ALL?: InputMaybe; patientsHasSampleConnection_NONE?: InputMaybe; @@ -7353,141 +9499,1028 @@ export type StatusSampleMetadataHasStatusNodeAggregationWhereInput = { tumorOrNormal_SHORTEST_LTE?: InputMaybe; }; -export type StatusSampleMetadataHasStatusRelationship = { - __typename?: "StatusSampleMetadataHasStatusRelationship"; +export type StatusSampleMetadataHasStatusRelationship = { + __typename?: "StatusSampleMetadataHasStatusRelationship"; + cursor: Scalars["String"]; + node: SampleMetadata; +}; + +export type StatusSampleMetadataHasStatusUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type StatusSampleMetadataHasStatusUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type StatusSampleMetadataSampleMetadataHasStatusAggregationSelection = { + __typename?: "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection = + { + __typename?: "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection"; + additionalProperties: StringAggregateSelectionNonNullable; + baitSet: StringAggregateSelectionNullable; + cfDNA2dBarcode: StringAggregateSelectionNullable; + cmoInfoIgoId: StringAggregateSelectionNullable; + cmoPatientId: StringAggregateSelectionNullable; + cmoSampleIdFields: StringAggregateSelectionNonNullable; + cmoSampleName: StringAggregateSelectionNullable; + collectionYear: StringAggregateSelectionNonNullable; + genePanel: StringAggregateSelectionNonNullable; + igoRequestId: StringAggregateSelectionNullable; + importDate: StringAggregateSelectionNonNullable; + investigatorSampleId: StringAggregateSelectionNullable; + libraries: StringAggregateSelectionNonNullable; + oncotreeCode: StringAggregateSelectionNullable; + preservation: StringAggregateSelectionNullable; + primaryId: StringAggregateSelectionNonNullable; + qcReports: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + sampleName: StringAggregateSelectionNullable; + sampleOrigin: StringAggregateSelectionNullable; + sampleType: StringAggregateSelectionNonNullable; + sex: StringAggregateSelectionNonNullable; + species: StringAggregateSelectionNonNullable; + tissueLocation: StringAggregateSelectionNullable; + tubeId: StringAggregateSelectionNullable; + tumorOrNormal: StringAggregateSelectionNonNullable; + }; + +/** Fields to sort Statuses by. The order in which sorts are applied is not guaranteed when specifying many fields in one StatusSort object. */ +export type StatusSort = { + validationReport?: InputMaybe; + validationStatus?: InputMaybe; +}; + +export type StatusUpdateInput = { + requestMetadataHasStatus?: InputMaybe< + Array + >; + sampleMetadataHasStatus?: InputMaybe< + Array + >; + validationReport?: InputMaybe; + validationStatus?: InputMaybe; +}; + +export type StatusWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + requestMetadataHasStatusAggregate?: InputMaybe; + requestMetadataHasStatusConnection_ALL?: InputMaybe; + requestMetadataHasStatusConnection_NONE?: InputMaybe; + requestMetadataHasStatusConnection_SINGLE?: InputMaybe; + requestMetadataHasStatusConnection_SOME?: InputMaybe; + /** Return Statuses where all of the related RequestMetadata match this filter */ + requestMetadataHasStatus_ALL?: InputMaybe; + /** Return Statuses where none of the related RequestMetadata match this filter */ + requestMetadataHasStatus_NONE?: InputMaybe; + /** Return Statuses where one of the related RequestMetadata match this filter */ + requestMetadataHasStatus_SINGLE?: InputMaybe; + /** Return Statuses where some of the related RequestMetadata match this filter */ + requestMetadataHasStatus_SOME?: InputMaybe; + sampleMetadataHasStatusAggregate?: InputMaybe; + sampleMetadataHasStatusConnection_ALL?: InputMaybe; + sampleMetadataHasStatusConnection_NONE?: InputMaybe; + sampleMetadataHasStatusConnection_SINGLE?: InputMaybe; + sampleMetadataHasStatusConnection_SOME?: InputMaybe; + /** Return Statuses where all of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_ALL?: InputMaybe; + /** Return Statuses where none of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_NONE?: InputMaybe; + /** Return Statuses where one of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_SINGLE?: InputMaybe; + /** Return Statuses where some of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_SOME?: InputMaybe; + validationReport?: InputMaybe; + validationReport_CONTAINS?: InputMaybe; + validationReport_ENDS_WITH?: InputMaybe; + validationReport_IN?: InputMaybe>; + validationReport_NOT?: InputMaybe; + validationReport_NOT_CONTAINS?: InputMaybe; + validationReport_NOT_ENDS_WITH?: InputMaybe; + validationReport_NOT_IN?: InputMaybe>; + validationReport_NOT_STARTS_WITH?: InputMaybe; + validationReport_STARTS_WITH?: InputMaybe; + validationStatus?: InputMaybe; + validationStatus_NOT?: InputMaybe; +}; + +export type StatusesConnection = { + __typename?: "StatusesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type StringAggregateSelectionNonNullable = { + __typename?: "StringAggregateSelectionNonNullable"; + longest: Scalars["String"]; + shortest: Scalars["String"]; +}; + +export type StringAggregateSelectionNullable = { + __typename?: "StringAggregateSelectionNullable"; + longest?: Maybe; + shortest?: Maybe; +}; + +export type Tempo = { + __typename?: "Tempo"; + hasEventBamCompletes: Array; + hasEventBamCompletesAggregate?: Maybe; + hasEventBamCompletesConnection: TempoHasEventBamCompletesConnection; + hasEventMafCompletes: Array; + hasEventMafCompletesAggregate?: Maybe; + hasEventMafCompletesConnection: TempoHasEventMafCompletesConnection; + hasEventQcCompletes: Array; + hasEventQcCompletesAggregate?: Maybe; + hasEventQcCompletesConnection: TempoHasEventQcCompletesConnection; + samplesHasTempo: Array; + samplesHasTempoAggregate?: Maybe; + samplesHasTempoConnection: TempoSamplesHasTempoConnection; +}; + +export type TempoHasEventBamCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoAggregateSelection = { + __typename?: "TempoAggregateSelection"; + count: Scalars["Int"]; +}; + +export type TempoBamCompleteHasEventBamCompletesAggregationSelection = { + __typename?: "TempoBamCompleteHasEventBamCompletesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type TempoBamCompleteHasEventBamCompletesNodeAggregateSelection = { + __typename?: "TempoBamCompleteHasEventBamCompletesNodeAggregateSelection"; + date: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; + +export type TempoConnectInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoConnectWhere = { + node: TempoWhere; +}; + +export type TempoCreateInput = { + hasEventBamCompletes?: InputMaybe; + hasEventMafCompletes?: InputMaybe; + hasEventQcCompletes?: InputMaybe; + samplesHasTempo?: InputMaybe; +}; + +export type TempoDeleteInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoDisconnectInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoEdge = { + __typename?: "TempoEdge"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type TempoHasEventBamCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnection = { + __typename?: "TempoHasEventBamCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoHasEventBamCompletesConnectionSort = { + node?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoHasEventBamCompletesCreateFieldInput = { + node: BamCompleteCreateInput; +}; + +export type TempoHasEventBamCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoHasEventBamCompletesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; +}; + +export type TempoHasEventBamCompletesRelationship = { + __typename?: "TempoHasEventBamCompletesRelationship"; cursor: Scalars["String"]; - node: SampleMetadata; + node: BamComplete; }; -export type StatusSampleMetadataHasStatusUpdateConnectionInput = { - node?: InputMaybe; +export type TempoHasEventBamCompletesUpdateConnectionInput = { + node?: InputMaybe; }; -export type StatusSampleMetadataHasStatusUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; - disconnect?: InputMaybe< - Array - >; - update?: InputMaybe; - where?: InputMaybe; +export type TempoHasEventBamCompletesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; }; -export type StatusSampleMetadataSampleMetadataHasStatusAggregationSelection = { - __typename?: "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection"; +export type TempoHasEventMafCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnection = { + __typename?: "TempoHasEventMafCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoHasEventMafCompletesConnectionSort = { + node?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoHasEventMafCompletesCreateFieldInput = { + node: MafCompleteCreateInput; +}; + +export type TempoHasEventMafCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoHasEventMafCompletesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + normalPrimaryId_AVERAGE_EQUAL?: InputMaybe; + normalPrimaryId_AVERAGE_GT?: InputMaybe; + normalPrimaryId_AVERAGE_GTE?: InputMaybe; + normalPrimaryId_AVERAGE_LT?: InputMaybe; + normalPrimaryId_AVERAGE_LTE?: InputMaybe; + normalPrimaryId_EQUAL?: InputMaybe; + normalPrimaryId_GT?: InputMaybe; + normalPrimaryId_GTE?: InputMaybe; + normalPrimaryId_LONGEST_EQUAL?: InputMaybe; + normalPrimaryId_LONGEST_GT?: InputMaybe; + normalPrimaryId_LONGEST_GTE?: InputMaybe; + normalPrimaryId_LONGEST_LT?: InputMaybe; + normalPrimaryId_LONGEST_LTE?: InputMaybe; + normalPrimaryId_LT?: InputMaybe; + normalPrimaryId_LTE?: InputMaybe; + normalPrimaryId_SHORTEST_EQUAL?: InputMaybe; + normalPrimaryId_SHORTEST_GT?: InputMaybe; + normalPrimaryId_SHORTEST_GTE?: InputMaybe; + normalPrimaryId_SHORTEST_LT?: InputMaybe; + normalPrimaryId_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; +}; + +export type TempoHasEventMafCompletesRelationship = { + __typename?: "TempoHasEventMafCompletesRelationship"; + cursor: Scalars["String"]; + node: MafComplete; +}; + +export type TempoHasEventMafCompletesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type TempoHasEventMafCompletesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnection = { + __typename?: "TempoHasEventQcCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoHasEventQcCompletesConnectionSort = { + node?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoHasEventQcCompletesCreateFieldInput = { + node: QcCompleteCreateInput; +}; + +export type TempoHasEventQcCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoHasEventQcCompletesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + reason_AVERAGE_EQUAL?: InputMaybe; + reason_AVERAGE_GT?: InputMaybe; + reason_AVERAGE_GTE?: InputMaybe; + reason_AVERAGE_LT?: InputMaybe; + reason_AVERAGE_LTE?: InputMaybe; + reason_EQUAL?: InputMaybe; + reason_GT?: InputMaybe; + reason_GTE?: InputMaybe; + reason_LONGEST_EQUAL?: InputMaybe; + reason_LONGEST_GT?: InputMaybe; + reason_LONGEST_GTE?: InputMaybe; + reason_LONGEST_LT?: InputMaybe; + reason_LONGEST_LTE?: InputMaybe; + reason_LT?: InputMaybe; + reason_LTE?: InputMaybe; + reason_SHORTEST_EQUAL?: InputMaybe; + reason_SHORTEST_GT?: InputMaybe; + reason_SHORTEST_GTE?: InputMaybe; + reason_SHORTEST_LT?: InputMaybe; + reason_SHORTEST_LTE?: InputMaybe; + result_AVERAGE_EQUAL?: InputMaybe; + result_AVERAGE_GT?: InputMaybe; + result_AVERAGE_GTE?: InputMaybe; + result_AVERAGE_LT?: InputMaybe; + result_AVERAGE_LTE?: InputMaybe; + result_EQUAL?: InputMaybe; + result_GT?: InputMaybe; + result_GTE?: InputMaybe; + result_LONGEST_EQUAL?: InputMaybe; + result_LONGEST_GT?: InputMaybe; + result_LONGEST_GTE?: InputMaybe; + result_LONGEST_LT?: InputMaybe; + result_LONGEST_LTE?: InputMaybe; + result_LT?: InputMaybe; + result_LTE?: InputMaybe; + result_SHORTEST_EQUAL?: InputMaybe; + result_SHORTEST_GT?: InputMaybe; + result_SHORTEST_GTE?: InputMaybe; + result_SHORTEST_LT?: InputMaybe; + result_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; +}; + +export type TempoHasEventQcCompletesRelationship = { + __typename?: "TempoHasEventQcCompletesRelationship"; + cursor: Scalars["String"]; + node: QcComplete; +}; + +export type TempoHasEventQcCompletesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type TempoHasEventQcCompletesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoMafCompleteHasEventMafCompletesAggregationSelection = { + __typename?: "TempoMafCompleteHasEventMafCompletesAggregationSelection"; count: Scalars["Int"]; - node?: Maybe; + node?: Maybe; }; -export type StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection = - { - __typename?: "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection"; - additionalProperties: StringAggregateSelectionNonNullable; - baitSet: StringAggregateSelectionNullable; - cfDNA2dBarcode: StringAggregateSelectionNullable; - cmoInfoIgoId: StringAggregateSelectionNullable; - cmoPatientId: StringAggregateSelectionNullable; - cmoSampleIdFields: StringAggregateSelectionNonNullable; - cmoSampleName: StringAggregateSelectionNullable; - collectionYear: StringAggregateSelectionNonNullable; - genePanel: StringAggregateSelectionNonNullable; - igoRequestId: StringAggregateSelectionNullable; - importDate: StringAggregateSelectionNonNullable; - investigatorSampleId: StringAggregateSelectionNullable; - libraries: StringAggregateSelectionNonNullable; - oncotreeCode: StringAggregateSelectionNullable; - preservation: StringAggregateSelectionNullable; - primaryId: StringAggregateSelectionNonNullable; - qcReports: StringAggregateSelectionNonNullable; - sampleClass: StringAggregateSelectionNonNullable; - sampleName: StringAggregateSelectionNullable; - sampleOrigin: StringAggregateSelectionNullable; - sampleType: StringAggregateSelectionNonNullable; - sex: StringAggregateSelectionNonNullable; - species: StringAggregateSelectionNonNullable; - tissueLocation: StringAggregateSelectionNullable; - tubeId: StringAggregateSelectionNullable; - tumorOrNormal: StringAggregateSelectionNonNullable; - }; +export type TempoMafCompleteHasEventMafCompletesNodeAggregateSelection = { + __typename?: "TempoMafCompleteHasEventMafCompletesNodeAggregateSelection"; + date: StringAggregateSelectionNonNullable; + normalPrimaryId: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; -/** Fields to sort Statuses by. The order in which sorts are applied is not guaranteed when specifying many fields in one StatusSort object. */ -export type StatusSort = { - validationReport?: InputMaybe; - validationStatus?: InputMaybe; +export type TempoOptions = { + limit?: InputMaybe; + offset?: InputMaybe; }; -export type StatusUpdateInput = { - requestMetadataHasStatus?: InputMaybe< - Array +export type TempoQcCompleteHasEventQcCompletesAggregationSelection = { + __typename?: "TempoQcCompleteHasEventQcCompletesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type TempoQcCompleteHasEventQcCompletesNodeAggregateSelection = { + __typename?: "TempoQcCompleteHasEventQcCompletesNodeAggregateSelection"; + date: StringAggregateSelectionNonNullable; + reason: StringAggregateSelectionNonNullable; + result: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; + +export type TempoRelationInput = { + hasEventBamCompletes?: InputMaybe< + Array >; - sampleMetadataHasStatus?: InputMaybe< - Array + hasEventMafCompletes?: InputMaybe< + Array >; - validationReport?: InputMaybe; - validationStatus?: InputMaybe; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; }; -export type StatusWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - requestMetadataHasStatusAggregate?: InputMaybe; - requestMetadataHasStatusConnection_ALL?: InputMaybe; - requestMetadataHasStatusConnection_NONE?: InputMaybe; - requestMetadataHasStatusConnection_SINGLE?: InputMaybe; - requestMetadataHasStatusConnection_SOME?: InputMaybe; - /** Return Statuses where all of the related RequestMetadata match this filter */ - requestMetadataHasStatus_ALL?: InputMaybe; - /** Return Statuses where none of the related RequestMetadata match this filter */ - requestMetadataHasStatus_NONE?: InputMaybe; - /** Return Statuses where one of the related RequestMetadata match this filter */ - requestMetadataHasStatus_SINGLE?: InputMaybe; - /** Return Statuses where some of the related RequestMetadata match this filter */ - requestMetadataHasStatus_SOME?: InputMaybe; - sampleMetadataHasStatusAggregate?: InputMaybe; - sampleMetadataHasStatusConnection_ALL?: InputMaybe; - sampleMetadataHasStatusConnection_NONE?: InputMaybe; - sampleMetadataHasStatusConnection_SINGLE?: InputMaybe; - sampleMetadataHasStatusConnection_SOME?: InputMaybe; - /** Return Statuses where all of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_ALL?: InputMaybe; - /** Return Statuses where none of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_NONE?: InputMaybe; - /** Return Statuses where one of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_SINGLE?: InputMaybe; - /** Return Statuses where some of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_SOME?: InputMaybe; - validationReport?: InputMaybe; - validationReport_CONTAINS?: InputMaybe; - validationReport_ENDS_WITH?: InputMaybe; - validationReport_IN?: InputMaybe>; - validationReport_NOT?: InputMaybe; - validationReport_NOT_CONTAINS?: InputMaybe; - validationReport_NOT_ENDS_WITH?: InputMaybe; - validationReport_NOT_IN?: InputMaybe>; - validationReport_NOT_STARTS_WITH?: InputMaybe; - validationReport_STARTS_WITH?: InputMaybe; - validationStatus?: InputMaybe; - validationStatus_NOT?: InputMaybe; +export type TempoSampleSamplesHasTempoAggregationSelection = { + __typename?: "TempoSampleSamplesHasTempoAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type TempoSampleSamplesHasTempoNodeAggregateSelection = { + __typename?: "TempoSampleSamplesHasTempoNodeAggregateSelection"; + datasource: StringAggregateSelectionNonNullable; + sampleCategory: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + smileSampleId: StringAggregateSelectionNonNullable; +}; + +export type TempoSamplesHasTempoAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnection = { + __typename?: "TempoSamplesHasTempoConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoSamplesHasTempoConnectionSort = { + node?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoSamplesHasTempoCreateFieldInput = { + node: SampleCreateInput; +}; + +export type TempoSamplesHasTempoDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoSamplesHasTempoNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + datasource_AVERAGE_EQUAL?: InputMaybe; + datasource_AVERAGE_GT?: InputMaybe; + datasource_AVERAGE_GTE?: InputMaybe; + datasource_AVERAGE_LT?: InputMaybe; + datasource_AVERAGE_LTE?: InputMaybe; + datasource_EQUAL?: InputMaybe; + datasource_GT?: InputMaybe; + datasource_GTE?: InputMaybe; + datasource_LONGEST_EQUAL?: InputMaybe; + datasource_LONGEST_GT?: InputMaybe; + datasource_LONGEST_GTE?: InputMaybe; + datasource_LONGEST_LT?: InputMaybe; + datasource_LONGEST_LTE?: InputMaybe; + datasource_LT?: InputMaybe; + datasource_LTE?: InputMaybe; + datasource_SHORTEST_EQUAL?: InputMaybe; + datasource_SHORTEST_GT?: InputMaybe; + datasource_SHORTEST_GTE?: InputMaybe; + datasource_SHORTEST_LT?: InputMaybe; + datasource_SHORTEST_LTE?: InputMaybe; + sampleCategory_AVERAGE_EQUAL?: InputMaybe; + sampleCategory_AVERAGE_GT?: InputMaybe; + sampleCategory_AVERAGE_GTE?: InputMaybe; + sampleCategory_AVERAGE_LT?: InputMaybe; + sampleCategory_AVERAGE_LTE?: InputMaybe; + sampleCategory_EQUAL?: InputMaybe; + sampleCategory_GT?: InputMaybe; + sampleCategory_GTE?: InputMaybe; + sampleCategory_LONGEST_EQUAL?: InputMaybe; + sampleCategory_LONGEST_GT?: InputMaybe; + sampleCategory_LONGEST_GTE?: InputMaybe; + sampleCategory_LONGEST_LT?: InputMaybe; + sampleCategory_LONGEST_LTE?: InputMaybe; + sampleCategory_LT?: InputMaybe; + sampleCategory_LTE?: InputMaybe; + sampleCategory_SHORTEST_EQUAL?: InputMaybe; + sampleCategory_SHORTEST_GT?: InputMaybe; + sampleCategory_SHORTEST_GTE?: InputMaybe; + sampleCategory_SHORTEST_LT?: InputMaybe; + sampleCategory_SHORTEST_LTE?: InputMaybe; + sampleClass_AVERAGE_EQUAL?: InputMaybe; + sampleClass_AVERAGE_GT?: InputMaybe; + sampleClass_AVERAGE_GTE?: InputMaybe; + sampleClass_AVERAGE_LT?: InputMaybe; + sampleClass_AVERAGE_LTE?: InputMaybe; + sampleClass_EQUAL?: InputMaybe; + sampleClass_GT?: InputMaybe; + sampleClass_GTE?: InputMaybe; + sampleClass_LONGEST_EQUAL?: InputMaybe; + sampleClass_LONGEST_GT?: InputMaybe; + sampleClass_LONGEST_GTE?: InputMaybe; + sampleClass_LONGEST_LT?: InputMaybe; + sampleClass_LONGEST_LTE?: InputMaybe; + sampleClass_LT?: InputMaybe; + sampleClass_LTE?: InputMaybe; + sampleClass_SHORTEST_EQUAL?: InputMaybe; + sampleClass_SHORTEST_GT?: InputMaybe; + sampleClass_SHORTEST_GTE?: InputMaybe; + sampleClass_SHORTEST_LT?: InputMaybe; + sampleClass_SHORTEST_LTE?: InputMaybe; + smileSampleId_AVERAGE_EQUAL?: InputMaybe; + smileSampleId_AVERAGE_GT?: InputMaybe; + smileSampleId_AVERAGE_GTE?: InputMaybe; + smileSampleId_AVERAGE_LT?: InputMaybe; + smileSampleId_AVERAGE_LTE?: InputMaybe; + smileSampleId_EQUAL?: InputMaybe; + smileSampleId_GT?: InputMaybe; + smileSampleId_GTE?: InputMaybe; + smileSampleId_LONGEST_EQUAL?: InputMaybe; + smileSampleId_LONGEST_GT?: InputMaybe; + smileSampleId_LONGEST_GTE?: InputMaybe; + smileSampleId_LONGEST_LT?: InputMaybe; + smileSampleId_LONGEST_LTE?: InputMaybe; + smileSampleId_LT?: InputMaybe; + smileSampleId_LTE?: InputMaybe; + smileSampleId_SHORTEST_EQUAL?: InputMaybe; + smileSampleId_SHORTEST_GT?: InputMaybe; + smileSampleId_SHORTEST_GTE?: InputMaybe; + smileSampleId_SHORTEST_LT?: InputMaybe; + smileSampleId_SHORTEST_LTE?: InputMaybe; }; -export type StatusesConnection = { - __typename?: "StatusesConnection"; - edges: Array; +export type TempoSamplesHasTempoRelationship = { + __typename?: "TempoSamplesHasTempoRelationship"; + cursor: Scalars["String"]; + node: Sample; +}; + +export type TempoSamplesHasTempoUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type TempoSamplesHasTempoUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoUpdateInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + hasEventBamCompletesAggregate?: InputMaybe; + hasEventBamCompletesConnection_ALL?: InputMaybe; + hasEventBamCompletesConnection_NONE?: InputMaybe; + hasEventBamCompletesConnection_SINGLE?: InputMaybe; + hasEventBamCompletesConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related BamCompletes match this filter */ + hasEventBamCompletes_ALL?: InputMaybe; + /** Return Tempos where none of the related BamCompletes match this filter */ + hasEventBamCompletes_NONE?: InputMaybe; + /** Return Tempos where one of the related BamCompletes match this filter */ + hasEventBamCompletes_SINGLE?: InputMaybe; + /** Return Tempos where some of the related BamCompletes match this filter */ + hasEventBamCompletes_SOME?: InputMaybe; + hasEventMafCompletesAggregate?: InputMaybe; + hasEventMafCompletesConnection_ALL?: InputMaybe; + hasEventMafCompletesConnection_NONE?: InputMaybe; + hasEventMafCompletesConnection_SINGLE?: InputMaybe; + hasEventMafCompletesConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related MafCompletes match this filter */ + hasEventMafCompletes_ALL?: InputMaybe; + /** Return Tempos where none of the related MafCompletes match this filter */ + hasEventMafCompletes_NONE?: InputMaybe; + /** Return Tempos where one of the related MafCompletes match this filter */ + hasEventMafCompletes_SINGLE?: InputMaybe; + /** Return Tempos where some of the related MafCompletes match this filter */ + hasEventMafCompletes_SOME?: InputMaybe; + hasEventQcCompletesAggregate?: InputMaybe; + hasEventQcCompletesConnection_ALL?: InputMaybe; + hasEventQcCompletesConnection_NONE?: InputMaybe; + hasEventQcCompletesConnection_SINGLE?: InputMaybe; + hasEventQcCompletesConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related QcCompletes match this filter */ + hasEventQcCompletes_ALL?: InputMaybe; + /** Return Tempos where none of the related QcCompletes match this filter */ + hasEventQcCompletes_NONE?: InputMaybe; + /** Return Tempos where one of the related QcCompletes match this filter */ + hasEventQcCompletes_SINGLE?: InputMaybe; + /** Return Tempos where some of the related QcCompletes match this filter */ + hasEventQcCompletes_SOME?: InputMaybe; + samplesHasTempoAggregate?: InputMaybe; + samplesHasTempoConnection_ALL?: InputMaybe; + samplesHasTempoConnection_NONE?: InputMaybe; + samplesHasTempoConnection_SINGLE?: InputMaybe; + samplesHasTempoConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related Samples match this filter */ + samplesHasTempo_ALL?: InputMaybe; + /** Return Tempos where none of the related Samples match this filter */ + samplesHasTempo_NONE?: InputMaybe; + /** Return Tempos where one of the related Samples match this filter */ + samplesHasTempo_SINGLE?: InputMaybe; + /** Return Tempos where some of the related Samples match this filter */ + samplesHasTempo_SOME?: InputMaybe; +}; + +export type TemposConnection = { + __typename?: "TemposConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type StringAggregateSelectionNonNullable = { - __typename?: "StringAggregateSelectionNonNullable"; - longest: Scalars["String"]; - shortest: Scalars["String"]; +export type UpdateBamCompletesMutationResponse = { + __typename?: "UpdateBamCompletesMutationResponse"; + bamCompletes: Array; + info: UpdateInfo; }; -export type StringAggregateSelectionNullable = { - __typename?: "StringAggregateSelectionNullable"; - longest?: Maybe; - shortest?: Maybe; +export type UpdateCohortCompletesMutationResponse = { + __typename?: "UpdateCohortCompletesMutationResponse"; + cohortCompletes: Array; + info: UpdateInfo; +}; + +export type UpdateCohortsMutationResponse = { + __typename?: "UpdateCohortsMutationResponse"; + cohorts: Array; + info: UpdateInfo; }; export type UpdateInfo = { @@ -7499,6 +10532,12 @@ export type UpdateInfo = { relationshipsDeleted: Scalars["Int"]; }; +export type UpdateMafCompletesMutationResponse = { + __typename?: "UpdateMafCompletesMutationResponse"; + info: UpdateInfo; + mafCompletes: Array; +}; + export type UpdatePatientAliasesMutationResponse = { __typename?: "UpdatePatientAliasesMutationResponse"; info: UpdateInfo; @@ -7517,6 +10556,12 @@ export type UpdateProjectsMutationResponse = { projects: Array; }; +export type UpdateQcCompletesMutationResponse = { + __typename?: "UpdateQcCompletesMutationResponse"; + info: UpdateInfo; + qcCompletes: Array; +}; + export type UpdateRequestMetadataMutationResponse = { __typename?: "UpdateRequestMetadataMutationResponse"; info: UpdateInfo; @@ -7553,6 +10598,12 @@ export type UpdateStatusesMutationResponse = { statuses: Array; }; +export type UpdateTemposMutationResponse = { + __typename?: "UpdateTemposMutationResponse"; + info: UpdateInfo; + tempos: Array; +}; + export type RequestsListQueryVariables = Exact<{ options?: InputMaybe; where?: InputMaybe; @@ -7631,96 +10682,13 @@ export type PatientsListQuery = { }>; }; -export type RequestWithSamplesQueryVariables = Exact<{ - options?: InputMaybe; - where?: InputMaybe; - hasSampleSamplesWhere2?: InputMaybe; - hasMetadataSampleMetadataWhere2?: InputMaybe; - hasSampleSamplesConnectionWhere2?: InputMaybe; - hasMetadataSampleMetadataOptions2?: InputMaybe; -}>; - -export type RequestWithSamplesQuery = { - __typename?: "Query"; - requests: Array<{ - __typename?: "Request"; - igoRequestId: string; - igoProjectId: string; - genePanel: string; - dataAnalystName: string; - dataAnalystEmail: string; - dataAccessEmails: string; - bicAnalysis: boolean; - investigatorEmail: string; - investigatorName: string; - isCmoRequest: boolean; - labHeadEmail: string; - labHeadName: string; - libraryType?: string | null; - otherContactEmails: string; - piEmail: string; - projectManagerName: string; - qcAccessEmails: string; - smileRequestId: string; - hasSampleSamples: Array<{ - __typename?: "Sample"; - smileSampleId: string; - sampleCategory: string; - sampleClass: string; - datasource: string; - revisable: boolean; - hasMetadataSampleMetadata: Array<{ - __typename?: "SampleMetadata"; - additionalProperties: string; - baitSet?: string | null; - cfDNA2dBarcode?: string | null; - cmoInfoIgoId?: string | null; - cmoPatientId?: string | null; - cmoSampleIdFields: string; - cmoSampleName?: string | null; - collectionYear: string; - genePanel: string; - igoComplete?: boolean | null; - igoRequestId?: string | null; - importDate: string; - investigatorSampleId?: string | null; - libraries: string; - oncotreeCode?: string | null; - preservation?: string | null; - primaryId: string; - qcReports: string; - sampleClass: string; - sampleName?: string | null; - sampleOrigin?: string | null; - sampleType: string; - sex: string; - species: string; - tissueLocation?: string | null; - tubeId?: string | null; - tumorOrNormal: string; - }>; - patientsHasSample: Array<{ - __typename?: "Patient"; - smilePatientId: string; - patientAliasesIsAlias: Array<{ - __typename?: "PatientAlias"; - namespace: string; - value: string; - }>; - }>; - }>; - hasSampleSamplesConnection: { - __typename?: "RequestHasSampleSamplesConnection"; - totalCount: number; - }; - }>; -}; - export type FindSamplesByInputValueQueryVariables = Exact<{ where?: InputMaybe; first?: InputMaybe; - options?: InputMaybe; - patientAliasesIsAliasWhere2?: InputMaybe; + sampleMetadataOptions?: InputMaybe; + bamCompletesOptions?: InputMaybe; + mafCompletesOptions?: InputMaybe; + qcCompletesOptions?: InputMaybe; }>; export type FindSamplesByInputValueQuery = { @@ -7813,6 +10781,34 @@ export type FindSamplesByInputValueQuery = { }; }>; }; + cohortsHasCohortSampleConnection: { + __typename?: "SampleCohortsHasCohortSampleConnection"; + edges: Array<{ + __typename?: "SampleCohortsHasCohortSampleRelationship"; + node: { __typename?: "Cohort"; cohortId: string }; + }>; + }; + hasTempoTempos: Array<{ + __typename?: "Tempo"; + hasEventBamCompletes: Array<{ + __typename?: "BamComplete"; + date: string; + status: string; + }>; + hasEventMafCompletes: Array<{ + __typename?: "MafComplete"; + date: string; + normalPrimaryId: string; + status: string; + }>; + hasEventQcCompletes: Array<{ + __typename?: "QcComplete"; + date: string; + reason: string; + result: string; + status: string; + }>; + }>; }; }>; }; @@ -7993,6 +10989,36 @@ export type GetPatientIdsTripletsQuery = { } | null> | null; }; +export type CohortsListQueryVariables = Exact<{ + where?: InputMaybe; + options?: InputMaybe; + cohortsConnectionWhere2?: InputMaybe; + hasCohortCompleteCohortCompletesOptions2?: InputMaybe; +}>; + +export type CohortsListQuery = { + __typename?: "Query"; + cohortsConnection: { __typename?: "CohortsConnection"; totalCount: number }; + cohorts: Array<{ + __typename?: "Cohort"; + cohortId: string; + hasCohortCompleteCohortCompletes: Array<{ + __typename?: "CohortComplete"; + type: string; + endUsers?: Array | null; + pmUsers?: Array | null; + projectTitle?: string | null; + projectSubtitle?: string | null; + status: string; + date: string; + }>; + hasCohortSampleSamplesConnection: { + __typename?: "CohortHasCohortSampleSamplesConnection"; + totalCount: number; + }; + }>; +}; + export const RequestPartsFragmentDoc = gql` fragment RequestParts on Request { igoRequestId @@ -8212,113 +11238,20 @@ export type PatientsListQueryResult = Apollo.QueryResult< PatientsListQuery, PatientsListQueryVariables >; -export const RequestWithSamplesDocument = gql` - query RequestWithSamples( - $options: RequestOptions - $where: RequestWhere - $hasSampleSamplesWhere2: SampleWhere - $hasMetadataSampleMetadataWhere2: SampleMetadataWhere - $hasSampleSamplesConnectionWhere2: RequestHasSampleSamplesConnectionWhere - $hasMetadataSampleMetadataOptions2: SampleMetadataOptions - ) { - requests(where: $where, options: $options) { - ...RequestParts - hasSampleSamples(where: $hasSampleSamplesWhere2) { - smileSampleId - sampleCategory - sampleClass - datasource - revisable - hasMetadataSampleMetadata( - where: $hasMetadataSampleMetadataWhere2 - options: $hasMetadataSampleMetadataOptions2 - ) { - ...SampleMetadataParts - } - patientsHasSample { - smilePatientId - patientAliasesIsAlias { - namespace - value - } - } - } - hasSampleSamplesConnection(where: $hasSampleSamplesConnectionWhere2) { - totalCount - } - } - } - ${RequestPartsFragmentDoc} - ${SampleMetadataPartsFragmentDoc} -`; - -/** - * __useRequestWithSamplesQuery__ - * - * To run a query within a React component, call `useRequestWithSamplesQuery` and pass it any options that fit your needs. - * When your component renders, `useRequestWithSamplesQuery` returns an object from Apollo Client that contains loading, error, and data properties - * you can use to render your UI. - * - * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; - * - * @example - * const { data, loading, error } = useRequestWithSamplesQuery({ - * variables: { - * options: // value for 'options' - * where: // value for 'where' - * hasSampleSamplesWhere2: // value for 'hasSampleSamplesWhere2' - * hasMetadataSampleMetadataWhere2: // value for 'hasMetadataSampleMetadataWhere2' - * hasSampleSamplesConnectionWhere2: // value for 'hasSampleSamplesConnectionWhere2' - * hasMetadataSampleMetadataOptions2: // value for 'hasMetadataSampleMetadataOptions2' - * }, - * }); - */ -export function useRequestWithSamplesQuery( - baseOptions?: Apollo.QueryHookOptions< - RequestWithSamplesQuery, - RequestWithSamplesQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useQuery< - RequestWithSamplesQuery, - RequestWithSamplesQueryVariables - >(RequestWithSamplesDocument, options); -} -export function useRequestWithSamplesLazyQuery( - baseOptions?: Apollo.LazyQueryHookOptions< - RequestWithSamplesQuery, - RequestWithSamplesQueryVariables - > -) { - const options = { ...defaultOptions, ...baseOptions }; - return Apollo.useLazyQuery< - RequestWithSamplesQuery, - RequestWithSamplesQueryVariables - >(RequestWithSamplesDocument, options); -} -export type RequestWithSamplesQueryHookResult = ReturnType< - typeof useRequestWithSamplesQuery ->; -export type RequestWithSamplesLazyQueryHookResult = ReturnType< - typeof useRequestWithSamplesLazyQuery ->; -export type RequestWithSamplesQueryResult = Apollo.QueryResult< - RequestWithSamplesQuery, - RequestWithSamplesQueryVariables ->; export const FindSamplesByInputValueDocument = gql` query FindSamplesByInputValue( $where: SampleWhere $first: Int - $options: SampleMetadataOptions - $patientAliasesIsAliasWhere2: PatientAliasWhere + $sampleMetadataOptions: SampleMetadataOptions + $bamCompletesOptions: BamCompleteOptions + $mafCompletesOptions: MafCompleteOptions + $qcCompletesOptions: QcCompleteOptions ) { samplesConnection(where: $where, first: $first) { edges { node { ...SampleParts - hasMetadataSampleMetadata(options: $options) { + hasMetadataSampleMetadata(options: $sampleMetadataOptions) { ...SampleMetadataParts hasStatusStatuses { validationReport @@ -8336,13 +11269,37 @@ export const FindSamplesByInputValueDocument = gql` edges { node { smilePatientId - patientAliasesIsAlias(where: $patientAliasesIsAliasWhere2) { + patientAliasesIsAlias { namespace value } } } } + cohortsHasCohortSampleConnection { + edges { + node { + cohortId + } + } + } + hasTempoTempos { + hasEventBamCompletes(options: $bamCompletesOptions) { + date + status + } + hasEventMafCompletes(options: $mafCompletesOptions) { + date + normalPrimaryId + status + } + hasEventQcCompletes(options: $qcCompletesOptions) { + date + reason + result + status + } + } } } } @@ -8366,8 +11323,10 @@ export const FindSamplesByInputValueDocument = gql` * variables: { * where: // value for 'where' * first: // value for 'first' - * options: // value for 'options' - * patientAliasesIsAliasWhere2: // value for 'patientAliasesIsAliasWhere2' + * sampleMetadataOptions: // value for 'sampleMetadataOptions' + * bamCompletesOptions: // value for 'bamCompletesOptions' + * mafCompletesOptions: // value for 'mafCompletesOptions' + * qcCompletesOptions: // value for 'qcCompletesOptions' * }, * }); */ @@ -8596,3 +11555,84 @@ export type GetPatientIdsTripletsQueryResult = Apollo.QueryResult< GetPatientIdsTripletsQuery, GetPatientIdsTripletsQueryVariables >; +export const CohortsListDocument = gql` + query CohortsList( + $where: CohortWhere + $options: CohortOptions + $cohortsConnectionWhere2: CohortWhere + $hasCohortCompleteCohortCompletesOptions2: CohortCompleteOptions + ) { + cohortsConnection(where: $cohortsConnectionWhere2) { + totalCount + } + cohorts(where: $where, options: $options) { + cohortId + hasCohortCompleteCohortCompletes( + options: $hasCohortCompleteCohortCompletesOptions2 + ) { + type + endUsers + pmUsers + projectTitle + projectSubtitle + status + date + } + hasCohortSampleSamplesConnection { + totalCount + } + } + } +`; + +/** + * __useCohortsListQuery__ + * + * To run a query within a React component, call `useCohortsListQuery` and pass it any options that fit your needs. + * When your component renders, `useCohortsListQuery` returns an object from Apollo Client that contains loading, error, and data properties + * you can use to render your UI. + * + * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; + * + * @example + * const { data, loading, error } = useCohortsListQuery({ + * variables: { + * where: // value for 'where' + * options: // value for 'options' + * cohortsConnectionWhere2: // value for 'cohortsConnectionWhere2' + * hasCohortCompleteCohortCompletesOptions2: // value for 'hasCohortCompleteCohortCompletesOptions2' + * }, + * }); + */ +export function useCohortsListQuery( + baseOptions?: Apollo.QueryHookOptions< + CohortsListQuery, + CohortsListQueryVariables + > +) { + const options = { ...defaultOptions, ...baseOptions }; + return Apollo.useQuery( + CohortsListDocument, + options + ); +} +export function useCohortsListLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions< + CohortsListQuery, + CohortsListQueryVariables + > +) { + const options = { ...defaultOptions, ...baseOptions }; + return Apollo.useLazyQuery( + CohortsListDocument, + options + ); +} +export type CohortsListQueryHookResult = ReturnType; +export type CohortsListLazyQueryHookResult = ReturnType< + typeof useCohortsListLazyQuery +>; +export type CohortsListQueryResult = Apollo.QueryResult< + CohortsListQuery, + CohortsListQueryVariables +>; diff --git a/frontend/src/pages/cohorts/CohortsPage.tsx b/frontend/src/pages/cohorts/CohortsPage.tsx new file mode 100644 index 00000000..2edd754c --- /dev/null +++ b/frontend/src/pages/cohorts/CohortsPage.tsx @@ -0,0 +1,168 @@ +import { + CohortCompleteOptions, + CohortWhere, + SampleWhere, + SortDirection, + useCohortsListLazyQuery, +} from "../../generated/graphql"; +import { useState } from "react"; +import { + CohortSamplesDetailsColumns, + CohortsListColumns, + cohortSampleFilterWhereVariables, + defaultReadOnlyColDef, + getCohortDataFromSamples, + handleSearch, +} from "../../shared/helpers"; +import RecordsList from "../../components/RecordsList"; +import { useParams } from "react-router-dom"; +import { PageHeader } from "../../shared/components/PageHeader"; + +function cohortFilterWhereVariables(parsedSearchVals: string[]): CohortWhere[] { + if (parsedSearchVals.length > 1) { + return [ + { cohortId_IN: parsedSearchVals }, + { + hasCohortCompleteCohortCompletes_SOME: { + type_IN: parsedSearchVals, + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + endUsers_INCLUDES: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + pmUsers_INCLUDES: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + projectTitle_IN: parsedSearchVals, + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + projectSubtitle_IN: parsedSearchVals, + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + status_IN: parsedSearchVals, + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + date_IN: parsedSearchVals, + }, + }, + ]; + } else { + return [ + { cohortId_CONTAINS: parsedSearchVals[0] }, + { + hasCohortCompleteCohortCompletes_SOME: { + type_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + endUsers_INCLUDES: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + pmUsers_INCLUDES: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + projectTitle_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + projectSubtitle_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + status_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasCohortCompleteCohortCompletes_SOME: { + date_CONTAINS: parsedSearchVals[0], + }, + }, + ]; + } +} + +export default function CohortsPage() { + const params = useParams(); + const [userSearchVal, setUserSearchVal] = useState(""); + const [parsedSearchVals, setParsedSearchVals] = useState([]); + const [showDownloadModal, setShowDownloadModal] = useState(false); + + const dataName = "cohorts"; + const sampleQueryParamFieldName = "cohortId"; + const sampleQueryParamHeaderName = "Cohort ID"; + const sampleQueryParamValue = params[sampleQueryParamFieldName]; + + return ( + <> + + + handleSearch(userSearchVal, setParsedSearchVals)} + showDownloadModal={showDownloadModal} + setShowDownloadModal={setShowDownloadModal} + handleDownload={() => setShowDownloadModal(true)} + samplesColDefs={CohortSamplesDetailsColumns} + samplesDefaultColDef={defaultReadOnlyColDef} + samplesQueryParam={ + sampleQueryParamValue && + `${sampleQueryParamHeaderName} "${sampleQueryParamValue}"` + } + getSamplesRowData={getCohortDataFromSamples} + samplesParentWhereVariables={ + { + cohortsHasCohortSampleConnection_SOME: { + node: { + [sampleQueryParamFieldName]: sampleQueryParamValue, + }, + }, + } as SampleWhere + } + samplesRefetchWhereVariables={(samplesParsedSearchVals: string[]) => { + return { + cohortsHasCohortSampleConnection_SOME: { + node: { + [sampleQueryParamFieldName]: sampleQueryParamValue, + }, + }, + OR: cohortSampleFilterWhereVariables(samplesParsedSearchVals), + } as SampleWhere; + }} + /> + + ); +} diff --git a/frontend/src/pages/home/HomePage.tsx b/frontend/src/pages/home/HomePage.tsx deleted file mode 100644 index f9dce9fc..00000000 --- a/frontend/src/pages/home/HomePage.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import * as React from "react"; -import { Container } from "react-bootstrap"; - -export const HomePage: React.FunctionComponent = (props) => { - return ( - -
- Home page content. -
TODO: add info/sections on this page describing the following: -
- 1. View recent deliveries. -
- 2. View request details. -
- 3. Edit sample metadata -
-
- ); -}; - -export default HomePage; diff --git a/frontend/src/pages/patients/PatientsPage.tsx b/frontend/src/pages/patients/PatientsPage.tsx index b19dc1e9..c2e00b99 100644 --- a/frontend/src/pages/patients/PatientsPage.tsx +++ b/frontend/src/pages/patients/PatientsPage.tsx @@ -5,19 +5,22 @@ import { usePatientsListLazyQuery, } from "../../generated/graphql"; import { Dispatch, SetStateAction, useEffect, useMemo, useState } from "react"; -import "ag-grid-community/styles/ag-grid.css"; -import "ag-grid-community/styles/ag-theme-alpine.css"; -import "ag-grid-enterprise"; import RecordsList from "../../components/RecordsList"; import { useParams } from "react-router-dom"; -import PageHeader from "../../shared/components/PageHeader"; +import { PageHeader } from "../../shared/components/PageHeader"; import { Col, Form } from "react-bootstrap"; import { AlertModal } from "../../components/AlertModal"; import { Tooltip } from "@material-ui/core"; import InfoIcon from "@material-ui/icons/InfoOutlined"; -import { parseSearchQueries } from "../../utils/parseSearchQueries"; +import { parseUserSearchVal } from "../../utils/parseSearchQueries"; import { REACT_APP_EXPRESS_SERVER_ORIGIN } from "../../shared/constants"; -import { PatientsListColumns } from "../../shared/helpers"; +import { + PatientsListColumns, + SampleDetailsColumns, + defaultEditableColDef, + getMetadataFromSamples, + sampleFilterWhereVariables, +} from "../../shared/helpers"; import { getUserEmail } from "../../utils/getUserEmail"; // Mirror the field types in the CRDB, where CMO_ID is stored without the "C-" prefix @@ -28,17 +31,17 @@ export type PatientIdsTriplet = { }; function patientAliasFilterWhereVariables( - uniqueQueries: string[] + parsedSearchVals: string[] ): PatientAliasWhere[] { - if (uniqueQueries.length > 1) { + if (parsedSearchVals.length > 1) { return [ - { value_IN: uniqueQueries }, - { namespace_IN: uniqueQueries }, + { value_IN: parsedSearchVals }, + { namespace_IN: parsedSearchVals }, { isAliasPatients_SOME: { hasSampleSamples_SOME: { hasMetadataSampleMetadata_SOME: { - cmoSampleName_IN: uniqueQueries, + cmoSampleName_IN: parsedSearchVals, }, }, }, @@ -47,7 +50,7 @@ function patientAliasFilterWhereVariables( isAliasPatients_SOME: { hasSampleSamples_SOME: { hasMetadataSampleMetadata_SOME: { - primaryId_IN: uniqueQueries, + primaryId_IN: parsedSearchVals, }, }, }, @@ -55,13 +58,13 @@ function patientAliasFilterWhereVariables( ]; } else { return [ - { value_CONTAINS: uniqueQueries[0] }, - { namespace_CONTAINS: uniqueQueries[0] }, + { value_CONTAINS: parsedSearchVals[0] }, + { namespace_CONTAINS: parsedSearchVals[0] }, { isAliasPatients_SOME: { hasSampleSamples_SOME: { hasMetadataSampleMetadata_SOME: { - cmoSampleName_CONTAINS: uniqueQueries[0], + cmoSampleName_CONTAINS: parsedSearchVals[0], }, }, }, @@ -70,7 +73,7 @@ function patientAliasFilterWhereVariables( isAliasPatients_SOME: { hasSampleSamples_SOME: { hasMetadataSampleMetadata_SOME: { - primaryId_CONTAINS: uniqueQueries[0], + primaryId_CONTAINS: parsedSearchVals[0], }, }, }, @@ -101,17 +104,19 @@ const NO_PHI_SEARCH_RESULTS = { "No results were found for your search. No patient IDs in your search exist in either the SMILE or CRDB databases.", }; +interface IPatientsPageProps { + userEmail: string | null; + setUserEmail: Dispatch>; +} + export default function PatientsPage({ userEmail, setUserEmail, -}: { - userEmail: string | null; - setUserEmail: Dispatch>; -}) { +}: IPatientsPageProps) { const params = useParams(); - const [searchVal, setSearchVal] = useState([]); - const [inputVal, setInputVal] = useState(""); + const [userSearchVal, setUserSearchVal] = useState(""); + const [parsedSearchVals, setParsedSearchVals] = useState([]); const [showDownloadModal, setShowDownloadModal] = useState(false); const [phiEnabled, setPhiEnabled] = useState(false); const [patientIdsTriplets, setPatientIdsTriplets] = useState< @@ -173,30 +178,30 @@ export default function PatientsPage({ } } - const handleSearch = async () => { - let uniqueQueries = parseSearchQueries(inputVal); + async function handlePatientSearch() { + let parsedSearchVals = parseUserSearchVal(userSearchVal); if (phiEnabled) { - uniqueQueries = uniqueQueries.map((query) => + parsedSearchVals = parsedSearchVals.map((query) => query.startsWith("C-") ? query.slice(2) : query ); - const newQueries = await fetchPatientIdsTriplets(uniqueQueries); + const customSearchVals = await fetchPatientIdsTriplets(parsedSearchVals); - if (newQueries.length > 0) { - setSearchVal(newQueries); + if (customSearchVals.length > 0) { + setParsedSearchVals(customSearchVals); } else if (userEmail) { setAlertModal({ show: true, ...NO_PHI_SEARCH_RESULTS, }); - setSearchVal([]); + setParsedSearchVals([]); } } else { - setSearchVal(uniqueQueries); + setParsedSearchVals(parsedSearchVals); } - }; + } useEffect(() => { window.addEventListener("message", handleLogin); @@ -211,7 +216,7 @@ export default function PatientsPage({ ...PHI_WARNING, }); - handleSearch(); + handlePatientSearch(); } return () => { @@ -220,7 +225,7 @@ export default function PatientsPage({ // eslint-disable-next-line }, [phiEnabled]); - let ActiveColumns = useMemo(() => { + let ActivePatientsListColumns = useMemo(() => { return PatientsListColumns.map((column) => { if ( column.headerName === "Patient MRN" && @@ -251,31 +256,51 @@ export default function PatientsPage({ }); }, [phiEnabled, patientIdsTriplets, userEmail]); - const pageRoute = "/patients"; + const dataName = "patients"; + const nodeName = "patientAliases"; const sampleQueryParamFieldName = "cmoPatientId"; + const sampleQueryParamHeaderName = "CMO Patient ID"; + const sampleQueryParamValue = params[sampleQueryParamFieldName]; return ( <> - + { + setAlertModal({ + show: true, + ...PHI_WARNING, + }); + setShowDownloadModal(true); + }} + samplesColDefs={SampleDetailsColumns} + samplesDefaultColDef={defaultEditableColDef} + samplesQueryParam={ + sampleQueryParamValue && + `${sampleQueryParamHeaderName} ${sampleQueryParamValue}` + } + getSamplesRowData={getMetadataFromSamples} + samplesParentWhereVariables={ { OR: [ { patientsHasSampleConnection_SOME: { node: { patientAliasesIsAlias_SOME: { - value: params[sampleQueryParamFieldName], + value: sampleQueryParamValue, }, }, }, @@ -283,7 +308,21 @@ export default function PatientsPage({ ], } as SampleWhere } - customFilterUI={ + samplesRefetchWhereVariables={(parsedSearchVals) => { + return { + hasMetadataSampleMetadata_SOME: { + OR: sampleFilterWhereVariables(parsedSearchVals), + ...(params[sampleQueryParamFieldName] + ? { + [sampleQueryParamFieldName]: + params[sampleQueryParamFieldName], + } + : {}), + }, + } as SampleWhere; + }} + setCustomSearchVals={setPatientIdsTriplets} + customToolbarUI={ <>
@@ -318,21 +357,6 @@ export default function PatientsPage({ } - setCustomFilterVals={setPatientIdsTriplets} - handleSearch={handleSearch} - searchVal={searchVal} - setSearchVal={setSearchVal} - inputVal={inputVal} - setInputVal={setInputVal} - showDownloadModal={showDownloadModal} - setShowDownloadModal={setShowDownloadModal} - handleDownload={() => { - setAlertModal({ - show: true, - ...PHI_WARNING, - }); - setShowDownloadModal(true); - }} /> 1) { +function requestFilterWhereVariables( + parsedSearchVals: string[] +): RequestWhere[] { + if (parsedSearchVals.length > 1) { return [ - { igoProjectId_IN: uniqueQueries }, - { igoRequestId_IN: uniqueQueries }, - { projectManagerName_IN: uniqueQueries }, - { investigatorName_IN: uniqueQueries }, - { investigatorEmail_IN: uniqueQueries }, - { piEmail_IN: uniqueQueries }, - { dataAnalystName_IN: uniqueQueries }, - { dataAnalystEmail_IN: uniqueQueries }, - { genePanel_IN: uniqueQueries }, - { labHeadName_IN: uniqueQueries }, - { labHeadEmail_IN: uniqueQueries }, - { qcAccessEmails_IN: uniqueQueries }, - { dataAccessEmails_IN: uniqueQueries }, - { otherContactEmails_IN: uniqueQueries }, + { igoProjectId_IN: parsedSearchVals }, + { igoRequestId_IN: parsedSearchVals }, + { projectManagerName_IN: parsedSearchVals }, + { investigatorName_IN: parsedSearchVals }, + { investigatorEmail_IN: parsedSearchVals }, + { piEmail_IN: parsedSearchVals }, + { dataAnalystName_IN: parsedSearchVals }, + { dataAnalystEmail_IN: parsedSearchVals }, + { genePanel_IN: parsedSearchVals }, + { labHeadName_IN: parsedSearchVals }, + { labHeadEmail_IN: parsedSearchVals }, + { qcAccessEmails_IN: parsedSearchVals }, + { dataAccessEmails_IN: parsedSearchVals }, + { otherContactEmails_IN: parsedSearchVals }, ]; } else { return [ - { igoProjectId_CONTAINS: uniqueQueries[0] }, - { igoRequestId_CONTAINS: uniqueQueries[0] }, - { projectManagerName_CONTAINS: uniqueQueries[0] }, - { investigatorName_CONTAINS: uniqueQueries[0] }, - { investigatorEmail_CONTAINS: uniqueQueries[0] }, - { piEmail_CONTAINS: uniqueQueries[0] }, - { dataAnalystName_CONTAINS: uniqueQueries[0] }, - { dataAnalystEmail_CONTAINS: uniqueQueries[0] }, - { genePanel_CONTAINS: uniqueQueries[0] }, - { labHeadName_CONTAINS: uniqueQueries[0] }, - { labHeadEmail_CONTAINS: uniqueQueries[0] }, - { qcAccessEmails_CONTAINS: uniqueQueries[0] }, - { dataAccessEmails_CONTAINS: uniqueQueries[0] }, - { otherContactEmails_CONTAINS: uniqueQueries[0] }, + { igoProjectId_CONTAINS: parsedSearchVals[0] }, + { igoRequestId_CONTAINS: parsedSearchVals[0] }, + { projectManagerName_CONTAINS: parsedSearchVals[0] }, + { investigatorName_CONTAINS: parsedSearchVals[0] }, + { investigatorEmail_CONTAINS: parsedSearchVals[0] }, + { piEmail_CONTAINS: parsedSearchVals[0] }, + { dataAnalystName_CONTAINS: parsedSearchVals[0] }, + { dataAnalystEmail_CONTAINS: parsedSearchVals[0] }, + { genePanel_CONTAINS: parsedSearchVals[0] }, + { labHeadName_CONTAINS: parsedSearchVals[0] }, + { labHeadEmail_CONTAINS: parsedSearchVals[0] }, + { qcAccessEmails_CONTAINS: parsedSearchVals[0] }, + { dataAccessEmails_CONTAINS: parsedSearchVals[0] }, + { otherContactEmails_CONTAINS: parsedSearchVals[0] }, ]; } } -export const RequestsPage: React.FunctionComponent = () => { +export default function RequestsPage() { const params = useParams(); - const [searchVal, setSearchVal] = useState([]); - const [inputVal, setInputVal] = useState(""); + const [userSearchVal, setUserSearchVal] = useState(""); + const [parsedSearchVals, setParsedSearchVals] = useState([]); const [showDownloadModal, setShowDownloadModal] = useState(false); - const pageRoute = "/requests"; + const dataName = "requests"; const sampleQueryParamFieldName = "igoRequestId"; - - const handleSearch = async () => { - const uniqueQueries = parseSearchQueries(inputVal); - setSearchVal(uniqueQueries); - }; + const sampleQueryParamHeaderName = "IGO Request ID"; + const sampleQueryParamValue = params[sampleQueryParamFieldName]; return ( <> - + handleSearch(userSearchVal, setParsedSearchVals)} + showDownloadModal={showDownloadModal} + setShowDownloadModal={setShowDownloadModal} + handleDownload={() => setShowDownloadModal(true)} + samplesColDefs={SampleDetailsColumns} + samplesDefaultColDef={defaultEditableColDef} + samplesQueryParam={ + sampleQueryParamValue && + `${sampleQueryParamHeaderName} ${sampleQueryParamValue}` + } + getSamplesRowData={getMetadataFromSamples} + samplesParentWhereVariables={ { hasMetadataSampleMetadata_SOME: { - [sampleQueryParamFieldName]: params[sampleQueryParamFieldName], + [sampleQueryParamFieldName]: sampleQueryParamValue, }, } as SampleWhere } - handleSearch={handleSearch} - searchVal={searchVal} - setSearchVal={setSearchVal} - inputVal={inputVal} - setInputVal={setInputVal} - showDownloadModal={showDownloadModal} - setShowDownloadModal={setShowDownloadModal} - handleDownload={() => setShowDownloadModal(true)} + samplesRefetchWhereVariables={(sampleParsedSearchVals) => { + return { + hasMetadataSampleMetadata_SOME: { + OR: sampleFilterWhereVariables(sampleParsedSearchVals), + ...(sampleQueryParamValue + ? { + [sampleQueryParamFieldName]: sampleQueryParamValue, + } + : {}), + }, + } as SampleWhere; + }} /> ); -}; - -export default RequestsPage; +} diff --git a/frontend/src/pages/samples/SamplesPage.tsx b/frontend/src/pages/samples/SamplesPage.tsx index c9c92449..336f9e9b 100644 --- a/frontend/src/pages/samples/SamplesPage.tsx +++ b/frontend/src/pages/samples/SamplesPage.tsx @@ -1,20 +1,30 @@ -import React from "react"; -import "ag-grid-community/styles/ag-grid.css"; -import "ag-grid-community/styles/ag-theme-alpine.css"; -import "ag-grid-enterprise"; -import PageHeader from "../../shared/components/PageHeader"; -import { SamplesList } from "../../components/SamplesList"; - -export const SamplesPage: React.FunctionComponent = (props) => { - const pageRoute = "/samples"; +import { PageHeader } from "../../shared/components/PageHeader"; +import SamplesList from "../../components/SamplesList"; +import { + SampleDetailsColumns, + defaultEditableColDef, + getMetadataFromSamples, + sampleFilterWhereVariables, +} from "../../shared/helpers"; +import { SampleWhere } from "../../generated/graphql"; +export default function SamplesPage() { return ( <> - + - + { + return { + hasMetadataSampleMetadata_SOME: { + OR: sampleFilterWhereVariables(parsedSearchVals), + }, + } as SampleWhere; + }} + /> ); -}; - -export default SamplesPage; +} diff --git a/frontend/src/shared/components/PageHeader.tsx b/frontend/src/shared/components/PageHeader.tsx index 5eaf9809..341a4e14 100644 --- a/frontend/src/shared/components/PageHeader.tsx +++ b/frontend/src/shared/components/PageHeader.tsx @@ -1,19 +1,9 @@ -import React from "react"; import { Col, Container, Row } from "react-bootstrap"; import { NavLink } from "react-router-dom"; -import { FunctionComponent } from "react"; -interface IPageHeaderProps { - pageTitle: string; - pageRoute: string; -} - -const PageHeader: FunctionComponent = ({ - pageTitle, - pageRoute, -}) => { - pageTitle = - pageTitle.charAt(0).toUpperCase() + pageTitle.slice(1).toLowerCase(); +export function PageHeader({ dataName }: { dataName: string }) { + const pageTitle = + dataName.charAt(0).toUpperCase() + dataName.slice(1).toLowerCase(); return ( @@ -25,7 +15,7 @@ const PageHeader: FunctionComponent = ({ Home
  • - {pageTitle} + {pageTitle}
  • @@ -34,6 +24,4 @@ const PageHeader: FunctionComponent = ({
    ); -}; - -export default PageHeader; +} diff --git a/frontend/src/shared/components/SmileNavBar.tsx b/frontend/src/shared/components/SmileNavBar.tsx index eb8ab1c6..1d6753a8 100644 --- a/frontend/src/shared/components/SmileNavBar.tsx +++ b/frontend/src/shared/components/SmileNavBar.tsx @@ -1,4 +1,3 @@ -import logo_with_text from "../../imgs/logo_with_text.png"; import { Nav, NavLink } from "react-bootstrap"; import { REACT_APP_EXPRESS_SERVER_ORIGIN } from "../constants"; import { Dispatch, SetStateAction } from "react"; @@ -27,13 +26,14 @@ export default function SmileNavBar({ > {userEmail && (
    diff --git a/frontend/src/shared/helpers.tsx b/frontend/src/shared/helpers.tsx index 4fe494c8..2825d4ac 100644 --- a/frontend/src/shared/helpers.tsx +++ b/frontend/src/shared/helpers.tsx @@ -7,10 +7,18 @@ import { } from "ag-grid-community"; import { Button } from "react-bootstrap"; import "ag-grid-enterprise"; -import { Sample, SampleMetadata } from "../generated/graphql"; +import { + Sample, + SampleMetadata, + SampleMetadataWhere, + SampleWhere, + TempoWhere, +} from "../generated/graphql"; import WarningIcon from "@material-ui/icons/Warning"; import { StatusTooltip } from "./components/StatusToolTip"; import { ITooltipParams } from "ag-grid-community"; +import { parseUserSearchVal } from "../utils/parseSearchQueries"; +import { Dispatch, SetStateAction } from "react"; export interface SampleMetadataExtended extends SampleMetadata { revisable: boolean; @@ -32,7 +40,7 @@ export type ChangeForSubmit = { export const RequestsListColumns: ColDef[] = [ { - headerName: "View", + headerName: "View Samples", cellRenderer: (params: CellClassParams) => { return ( + ); + }, + sortable: false, + }, + { + field: "cohortId", + headerName: "Cohort ID", + }, + { + headerName: "# Samples", + valueGetter: ({ data }) => + data["hasCohortSampleSamplesConnection"].totalCount, + sortable: false, + }, + { + headerName: "Cohort Complete Date", + valueGetter: ({ data }) => + data["hasCohortCompleteCohortCompletes"][0]?.date, + sortable: false, + }, + { + headerName: "End Users", + valueGetter: ({ data }) => + data["hasCohortCompleteCohortCompletes"][0]?.endUsers, + sortable: false, + }, + { + headerName: "PM Users", + valueGetter: ({ data }) => + data["hasCohortCompleteCohortCompletes"][0]?.pmUsers, + sortable: false, + }, + { + headerName: "Project Title", + valueGetter: ({ data }) => + data["hasCohortCompleteCohortCompletes"][0]?.projectTitle, + sortable: false, + }, + { + headerName: "Project Subtitle", + valueGetter: ({ data }) => + data["hasCohortCompleteCohortCompletes"][0]?.projectSubtitle, + sortable: false, + }, + { + headerName: "Status", + valueGetter: ({ data }) => + data["hasCohortCompleteCohortCompletes"][0]?.status, + sortable: false, + }, + { + headerName: "Type", + valueGetter: ({ data }) => + data["hasCohortCompleteCohortCompletes"][0]?.type, + sortable: false, + }, +]; + +export const CohortSamplesDetailsColumns: ColDef[] = [ + { + field: "primaryId", + headerName: "Primary ID", + }, + { + field: "cmoSampleName", + headerName: "CMO Sample Name", + }, + { + headerName: "BAM Complete Date", + valueGetter: ({ data }) => data.bamComplete?.date, + }, + { + headerName: "BAM Complete Status", + valueGetter: ({ data }) => data.bamComplete?.status, + }, + { + headerName: "MAF Complete Date", + valueGetter: ({ data }) => data.mafComplete?.date, + }, + { + headerName: "MAF Complete Normal Primary ID", + valueGetter: ({ data }) => data.mafComplete?.normalPrimaryId, + }, + { + headerName: "MAF Complete Status", + valueGetter: ({ data }) => data.mafComplete?.status, + }, + { + headerName: "QC Complete Date", + valueGetter: ({ data }) => data.qcComplete?.date, + }, + { + headerName: "QC Complete Result", + valueGetter: ({ data }) => data.qcComplete?.result, + }, + { + headerName: "QC Complete Reason", + valueGetter: ({ data }) => data.qcComplete?.reason, + }, + { + headerName: "QC Complete Status", + valueGetter: ({ data }) => data.qcComplete?.status, + }, +]; + +export const defaultColDef: ColDef = { sortable: true, - editable: true, resizable: true, + headerComponentParams: readOnlyHeader, }; -export const defaultRecordsColDef: ColDef = { - sortable: true, - resizable: true, +export const defaultEditableColDef: ColDef = { + ...defaultColDef, + editable: true, +}; + +export const defaultReadOnlyColDef: ColDef = { + ...defaultColDef, + editable: false, }; const protectedFields: string[] = [ @@ -502,3 +637,211 @@ const protectedFields: string[] = [ "validationReport", "revisable", ]; + +export function sampleFilterWhereVariables( + parsedSearchVals: string[] +): SampleMetadataWhere[] { + if (parsedSearchVals.length > 1) { + return [ + { cmoSampleName_IN: parsedSearchVals }, + { importDate_IN: parsedSearchVals }, + { investigatorSampleId_IN: parsedSearchVals }, + { primaryId_IN: parsedSearchVals }, + { sampleClass_IN: parsedSearchVals }, + { cmoPatientId_IN: parsedSearchVals }, + { cmoSampleIdFields_IN: parsedSearchVals }, + { sampleName_IN: parsedSearchVals }, + { preservation_IN: parsedSearchVals }, + { tumorOrNormal_IN: parsedSearchVals }, + { oncotreeCode_IN: parsedSearchVals }, + { collectionYear_IN: parsedSearchVals }, + { sampleOrigin_IN: parsedSearchVals }, + { tissueLocation_IN: parsedSearchVals }, + { sex_IN: parsedSearchVals }, + { libraries_IN: parsedSearchVals }, + { sampleType_IN: parsedSearchVals }, + { species_IN: parsedSearchVals }, + { genePanel_IN: parsedSearchVals }, + ]; + } else { + return [ + { cmoSampleName_CONTAINS: parsedSearchVals[0] }, + { importDate_CONTAINS: parsedSearchVals[0] }, + { investigatorSampleId_CONTAINS: parsedSearchVals[0] }, + { primaryId_CONTAINS: parsedSearchVals[0] }, + { sampleClass_CONTAINS: parsedSearchVals[0] }, + { cmoPatientId_CONTAINS: parsedSearchVals[0] }, + { cmoSampleIdFields_CONTAINS: parsedSearchVals[0] }, + { sampleName_CONTAINS: parsedSearchVals[0] }, + { preservation_CONTAINS: parsedSearchVals[0] }, + { tumorOrNormal_CONTAINS: parsedSearchVals[0] }, + { oncotreeCode_CONTAINS: parsedSearchVals[0] }, + { collectionYear_CONTAINS: parsedSearchVals[0] }, + { sampleOrigin_CONTAINS: parsedSearchVals[0] }, + { tissueLocation_CONTAINS: parsedSearchVals[0] }, + { sex_CONTAINS: parsedSearchVals[0] }, + { libraries_CONTAINS: parsedSearchVals[0] }, + { sampleType_CONTAINS: parsedSearchVals[0] }, + { species_CONTAINS: parsedSearchVals[0] }, + { genePanel_CONTAINS: parsedSearchVals[0] }, + ]; + } +} + +export function cohortSampleFilterWhereVariables( + parsedSearchVals: string[] +): SampleWhere[] { + let tempoWhere: TempoWhere[] = []; + if (parsedSearchVals.length > 1) { + tempoWhere = [ + { + hasEventBamCompletes_SOME: { + date_IN: parsedSearchVals, + }, + }, + { + hasEventBamCompletes_SOME: { + status_IN: parsedSearchVals, + }, + }, + { + hasEventMafCompletes_SOME: { + date_IN: parsedSearchVals, + }, + }, + { + hasEventMafCompletes_SOME: { + normalPrimaryId_IN: parsedSearchVals, + }, + }, + { + hasEventMafCompletes_SOME: { + status_IN: parsedSearchVals, + }, + }, + { + hasEventQcCompletes_SOME: { + date_IN: parsedSearchVals, + }, + }, + { + hasEventQcCompletes_SOME: { + result_IN: parsedSearchVals, + }, + }, + { + hasEventQcCompletes_SOME: { + reason_IN: parsedSearchVals, + }, + }, + { + hasEventQcCompletes_SOME: { + status_IN: parsedSearchVals, + }, + }, + ]; + } else { + tempoWhere = [ + { + hasEventBamCompletes_SOME: { + date_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventBamCompletes_SOME: { + status_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventMafCompletes_SOME: { + date_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventMafCompletes_SOME: { + normalPrimaryId_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventMafCompletes_SOME: { + status_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventQcCompletes_SOME: { + date_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventQcCompletes_SOME: { + result_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventQcCompletes_SOME: { + reason_CONTAINS: parsedSearchVals[0], + }, + }, + { + hasEventQcCompletes_SOME: { + status_CONTAINS: parsedSearchVals[0], + }, + }, + ]; + } + + let sampleMetadataWhere: SampleMetadataWhere[] = []; + if (parsedSearchVals.length > 1) { + sampleMetadataWhere = [ + { primaryId_IN: parsedSearchVals }, + { cmoSampleName_IN: parsedSearchVals }, + ]; + } else { + sampleMetadataWhere = [ + { primaryId_CONTAINS: parsedSearchVals[0] }, + { cmoSampleName_CONTAINS: parsedSearchVals[0] }, + ]; + } + + return [ + { + hasTempoTempos_SOME: { + OR: tempoWhere, + }, + }, + { + hasMetadataSampleMetadata_SOME: { + OR: sampleMetadataWhere, + }, + }, + ]; +} + +export function getMetadataFromSamples(samples: Sample[]) { + return samples.map((s: any) => { + return { + ...s.hasMetadataSampleMetadata[0], + revisable: s.revisable, + }; + }); +} + +export function getCohortDataFromSamples(samples: Sample[]) { + return samples.map((s: any) => { + return { + ...s.hasMetadataSampleMetadata[0], + revisable: s.revisable, + bamComplete: s.hasTempoTempos[0].hasEventBamCompletes[0], + mafComplete: s.hasTempoTempos[0].hasEventMafCompletes[0], + qcComplete: s.hasTempoTempos[0].hasEventQcCompletes[0], + }; + }); +} + +export function handleSearch( + userSearchVal: string, + setParsedSearchVals: Dispatch> +) { + const parsedSearchVals = parseUserSearchVal(userSearchVal); + setParsedSearchVals(parsedSearchVals); +} diff --git a/frontend/src/shared/tableElements.tsx b/frontend/src/shared/tableElements.tsx index eaac6367..5e430d7c 100644 --- a/frontend/src/shared/tableElements.tsx +++ b/frontend/src/shared/tableElements.tsx @@ -4,6 +4,8 @@ import { Button, Col, Form, Row } from "react-bootstrap"; import Spinner from "react-spinkit"; import InfoIcon from "@material-ui/icons/InfoOutlined"; import { Tooltip } from "@material-ui/core"; +import { DataName } from "./types"; +import { Dispatch, SetStateAction } from "react"; export function LoadingSpinner() { return ( @@ -22,20 +24,20 @@ export function ErrorMessage({ error }: { error: ApolloError }) { } export function Toolbar({ - searchTerm, - input, - setInput, + dataName, + userSearchVal, + setUserSearchVal, handleSearch, - clearInput, + clearUserSearchVal, matchingResultsCount, handleDownload, customUI, }: { - searchTerm: string; - input: string; - setInput: (input: string) => void; + dataName: DataName; + userSearchVal: string; + setUserSearchVal: Dispatch>; handleSearch: () => void; - clearInput: () => void; + clearUserSearchVal: () => void; matchingResultsCount: string; handleDownload: () => void; customUI?: JSX.Element; @@ -53,20 +55,20 @@ export function Toolbar({ className={"d-inline-block"} style={{ width: "300px" }} type="search" - placeholder={"Search " + searchTerm} + placeholder={"Search " + dataName} aria-label="Search" - value={input} + value={userSearchVal} onKeyDown={(event) => { if (event.key === "Enter") { handleSearch(); } }} onInput={(event) => { - const currInput = event.currentTarget.value; - if (currInput === "") { - clearInput(); + const userSearchVal = event.currentTarget.value; + if (userSearchVal === "") { + clearUserSearchVal(); } - setInput(currInput); + setUserSearchVal(userSearchVal); }} /> diff --git a/frontend/src/shared/types.ts b/frontend/src/shared/types.ts index dad75015..0be57eff 100644 --- a/frontend/src/shared/types.ts +++ b/frontend/src/shared/types.ts @@ -3,9 +3,11 @@ import { RequestsListDocument } from "../generated/graphql"; const defaultOptions = {} as const; -export function useHookGeneric( +export function useHookLazyGeneric( baseOptions?: Apollo.LazyQueryHookOptions ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery(RequestsListDocument, options); } + +export type DataName = "requests" | "patients" | "cohorts" | "samples"; diff --git a/frontend/src/utils/parseSearchQueries.ts b/frontend/src/utils/parseSearchQueries.ts index 81a60f39..6ea744da 100644 --- a/frontend/src/utils/parseSearchQueries.ts +++ b/frontend/src/utils/parseSearchQueries.ts @@ -1,7 +1,7 @@ import { chain } from "lodash"; -export function parseSearchQueries(value: string): string[] { - return chain(value) +export function parseUserSearchVal(userSearchVal: string): string[] { + return chain(userSearchVal) .split(/[\s,]+/) // split on whitespaces and commas .compact() .uniq() diff --git a/graphql-server/src/generated/graphql.ts b/graphql-server/src/generated/graphql.ts index df9a0e72..536493a7 100644 --- a/graphql-server/src/generated/graphql.ts +++ b/graphql-server/src/generated/graphql.ts @@ -20,679 +20,951 @@ export type Scalars = { Float: number; }; -export type CreateInfo = { - __typename?: "CreateInfo"; - bookmark?: Maybe; - nodesCreated: Scalars["Int"]; - relationshipsCreated: Scalars["Int"]; +export type BamComplete = { + __typename?: "BamComplete"; + date: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent: Array; + temposHasEventAggregate?: Maybe; + temposHasEventConnection: BamCompleteTemposHasEventConnection; }; -export type CreatePatientAliasesMutationResponse = { - __typename?: "CreatePatientAliasesMutationResponse"; - info: CreateInfo; - patientAliases: Array; +export type BamCompleteTemposHasEventArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type CreatePatientsMutationResponse = { - __typename?: "CreatePatientsMutationResponse"; - info: CreateInfo; - patients: Array; +export type BamCompleteTemposHasEventAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type CreateProjectsMutationResponse = { - __typename?: "CreateProjectsMutationResponse"; - info: CreateInfo; - projects: Array; +export type BamCompleteTemposHasEventConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; }; -export type CreateRequestMetadataMutationResponse = { - __typename?: "CreateRequestMetadataMutationResponse"; - info: CreateInfo; - requestMetadata: Array; +export type BamCompleteAggregateSelection = { + __typename?: "BamCompleteAggregateSelection"; + count: Scalars["Int"]; + date: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; }; -export type CreateRequestsMutationResponse = { - __typename?: "CreateRequestsMutationResponse"; - info: CreateInfo; - requests: Array; +export type BamCompleteConnectInput = { + temposHasEvent?: InputMaybe< + Array + >; }; -export type CreateSampleAliasesMutationResponse = { - __typename?: "CreateSampleAliasesMutationResponse"; - info: CreateInfo; - sampleAliases: Array; +export type BamCompleteConnectWhere = { + node: BamCompleteWhere; }; -export type CreateSampleMetadataMutationResponse = { - __typename?: "CreateSampleMetadataMutationResponse"; - info: CreateInfo; - sampleMetadata: Array; +export type BamCompleteCreateInput = { + date: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent?: InputMaybe; }; -export type CreateSamplesMutationResponse = { - __typename?: "CreateSamplesMutationResponse"; - info: CreateInfo; - samples: Array; +export type BamCompleteDeleteInput = { + temposHasEvent?: InputMaybe>; }; -export type CreateStatusesMutationResponse = { - __typename?: "CreateStatusesMutationResponse"; - info: CreateInfo; - statuses: Array; +export type BamCompleteDisconnectInput = { + temposHasEvent?: InputMaybe< + Array + >; }; -export type DeleteInfo = { - __typename?: "DeleteInfo"; - bookmark?: Maybe; - nodesDeleted: Scalars["Int"]; - relationshipsDeleted: Scalars["Int"]; +export type BamCompleteEdge = { + __typename?: "BamCompleteEdge"; + cursor: Scalars["String"]; + node: BamComplete; }; -export type Mutation = { - __typename?: "Mutation"; - createPatientAliases: CreatePatientAliasesMutationResponse; - createPatients: CreatePatientsMutationResponse; - createProjects: CreateProjectsMutationResponse; - createRequestMetadata: CreateRequestMetadataMutationResponse; - createRequests: CreateRequestsMutationResponse; - createSampleAliases: CreateSampleAliasesMutationResponse; - createSampleMetadata: CreateSampleMetadataMutationResponse; - createSamples: CreateSamplesMutationResponse; - createStatuses: CreateStatusesMutationResponse; - deletePatientAliases: DeleteInfo; - deletePatients: DeleteInfo; - deleteProjects: DeleteInfo; - deleteRequestMetadata: DeleteInfo; - deleteRequests: DeleteInfo; - deleteSampleAliases: DeleteInfo; - deleteSampleMetadata: DeleteInfo; - deleteSamples: DeleteInfo; - deleteStatuses: DeleteInfo; - updatePatientAliases: UpdatePatientAliasesMutationResponse; - updatePatients: UpdatePatientsMutationResponse; - updateProjects: UpdateProjectsMutationResponse; - updateRequestMetadata: UpdateRequestMetadataMutationResponse; - updateRequests: UpdateRequestsMutationResponse; - updateSampleAliases: UpdateSampleAliasesMutationResponse; - updateSampleMetadata: UpdateSampleMetadataMutationResponse; - updateSamples: UpdateSamplesMutationResponse; - updateStatuses: UpdateStatusesMutationResponse; +export type BamCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more BamCompleteSort objects to sort BamCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; }; -export type MutationCreatePatientAliasesArgs = { - input: Array; +export type BamCompleteRelationInput = { + temposHasEvent?: InputMaybe>; }; -export type MutationCreatePatientsArgs = { - input: Array; +/** Fields to sort BamCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one BamCompleteSort object. */ +export type BamCompleteSort = { + date?: InputMaybe; + status?: InputMaybe; }; -export type MutationCreateProjectsArgs = { - input: Array; +export type BamCompleteTempoTemposHasEventAggregationSelection = { + __typename?: "BamCompleteTempoTemposHasEventAggregationSelection"; + count: Scalars["Int"]; }; -export type MutationCreateRequestMetadataArgs = { - input: Array; +export type BamCompleteTemposHasEventAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; }; -export type MutationCreateRequestsArgs = { - input: Array; +export type BamCompleteTemposHasEventConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type MutationCreateSampleAliasesArgs = { - input: Array; +export type BamCompleteTemposHasEventConnection = { + __typename?: "BamCompleteTemposHasEventConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type MutationCreateSampleMetadataArgs = { - input: Array; +export type BamCompleteTemposHasEventConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type MutationCreateSamplesArgs = { - input: Array; +export type BamCompleteTemposHasEventCreateFieldInput = { + node: TempoCreateInput; }; -export type MutationCreateStatusesArgs = { - input: Array; +export type BamCompleteTemposHasEventDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeletePatientAliasesArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type BamCompleteTemposHasEventDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeletePatientsArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type BamCompleteTemposHasEventFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; }; -export type MutationDeleteProjectsArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type BamCompleteTemposHasEventRelationship = { + __typename?: "BamCompleteTemposHasEventRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type BamCompleteTemposHasEventUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type BamCompleteTemposHasEventUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type BamCompleteUpdateInput = { + date?: InputMaybe; + status?: InputMaybe; + temposHasEvent?: InputMaybe>; +}; + +export type BamCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + temposHasEventAggregate?: InputMaybe; + temposHasEventConnection_ALL?: InputMaybe; + temposHasEventConnection_NONE?: InputMaybe; + temposHasEventConnection_SINGLE?: InputMaybe; + temposHasEventConnection_SOME?: InputMaybe; + /** Return BamCompletes where all of the related Tempos match this filter */ + temposHasEvent_ALL?: InputMaybe; + /** Return BamCompletes where none of the related Tempos match this filter */ + temposHasEvent_NONE?: InputMaybe; + /** Return BamCompletes where one of the related Tempos match this filter */ + temposHasEvent_SINGLE?: InputMaybe; + /** Return BamCompletes where some of the related Tempos match this filter */ + temposHasEvent_SOME?: InputMaybe; +}; + +export type BamCompletesConnection = { + __typename?: "BamCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type MutationDeleteRequestMetadataArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type Cohort = { + __typename?: "Cohort"; + cohortId: Scalars["String"]; + hasCohortCompleteCohortCompletes: Array; + hasCohortCompleteCohortCompletesAggregate?: Maybe; + hasCohortCompleteCohortCompletesConnection: CohortHasCohortCompleteCohortCompletesConnection; + hasCohortSampleSamples: Array; + hasCohortSampleSamplesAggregate?: Maybe; + hasCohortSampleSamplesConnection: CohortHasCohortSampleSamplesConnection; }; -export type MutationDeleteRequestsArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeleteSampleAliasesArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type MutationDeleteSampleMetadataArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe< + Array + >; + where?: InputMaybe; }; -export type MutationDeleteSamplesArgs = { - delete?: InputMaybe; +export type CohortHasCohortSampleSamplesArgs = { + directed?: InputMaybe; + options?: InputMaybe; where?: InputMaybe; }; -export type MutationDeleteStatusesArgs = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortSampleSamplesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type MutationUpdatePatientAliasesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortSampleSamplesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; }; -export type MutationUpdatePatientsArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortAggregateSelection = { + __typename?: "CohortAggregateSelection"; + cohortId: StringAggregateSelectionNonNullable; + count: Scalars["Int"]; }; -export type MutationUpdateProjectsArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCohortCompleteHasCohortCompleteCohortCompletesAggregationSelection = + { + __typename?: "CohortCohortCompleteHasCohortCompleteCohortCompletesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; + }; + +export type CohortCohortCompleteHasCohortCompleteCohortCompletesNodeAggregateSelection = + { + __typename?: "CohortCohortCompleteHasCohortCompleteCohortCompletesNodeAggregateSelection"; + analyst: StringAggregateSelectionNullable; + date: StringAggregateSelectionNonNullable; + projectSubtitle: StringAggregateSelectionNullable; + projectTitle: StringAggregateSelectionNullable; + status: StringAggregateSelectionNonNullable; + type: StringAggregateSelectionNonNullable; + }; + +export type CohortComplete = { + __typename?: "CohortComplete"; + analyst?: Maybe; + cohortsHasCohortComplete: Array; + cohortsHasCohortCompleteAggregate?: Maybe; + cohortsHasCohortCompleteConnection: CohortCompleteCohortsHasCohortCompleteConnection; + date: Scalars["String"]; + endUsers?: Maybe>>; + pmUsers?: Maybe>>; + projectSubtitle?: Maybe; + projectTitle?: Maybe; + status: Scalars["String"]; + type: Scalars["String"]; +}; + +export type CohortCompleteCohortsHasCohortCompleteArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type MutationUpdateRequestMetadataArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; }; -export type MutationUpdateRequestsArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe< + Array + >; + where?: InputMaybe; }; -export type MutationUpdateSampleAliasesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteAggregateSelection = { + __typename?: "CohortCompleteAggregateSelection"; + analyst: StringAggregateSelectionNullable; + count: Scalars["Int"]; + date: StringAggregateSelectionNonNullable; + projectSubtitle: StringAggregateSelectionNullable; + projectTitle: StringAggregateSelectionNullable; + status: StringAggregateSelectionNonNullable; + type: StringAggregateSelectionNonNullable; }; -export type MutationUpdateSampleMetadataArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortCohortsHasCohortCompleteAggregationSelection = { + __typename?: "CohortCompleteCohortCohortsHasCohortCompleteAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; }; -export type MutationUpdateSamplesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortCohortsHasCohortCompleteNodeAggregateSelection = + { + __typename?: "CohortCompleteCohortCohortsHasCohortCompleteNodeAggregateSelection"; + cohortId: StringAggregateSelectionNonNullable; + }; + +export type CohortCompleteCohortsHasCohortCompleteAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; }; -export type MutationUpdateStatusesArgs = { - connect?: InputMaybe; - create?: InputMaybe; - delete?: InputMaybe; - disconnect?: InputMaybe; - update?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -/** Pagination information (Relay) */ -export type PageInfo = { - __typename?: "PageInfo"; - endCursor?: Maybe; - hasNextPage: Scalars["Boolean"]; - hasPreviousPage: Scalars["Boolean"]; - startCursor?: Maybe; +export type CohortCompleteCohortsHasCohortCompleteConnection = { + __typename?: "CohortCompleteCohortsHasCohortCompleteConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type Patient = { - __typename?: "Patient"; - hasSampleSamples: Array; - hasSampleSamplesAggregate?: Maybe; - hasSampleSamplesConnection: PatientHasSampleSamplesConnection; - patientAliasesIsAlias: Array; - patientAliasesIsAliasAggregate?: Maybe; - patientAliasesIsAliasConnection: PatientPatientAliasesIsAliasConnection; - smilePatientId: Scalars["String"]; +export type CohortCompleteCohortsHasCohortCompleteConnectionSort = { + node?: InputMaybe; }; -export type PatientHasSampleSamplesArgs = { - directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteConnectionWhere = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type PatientHasSampleSamplesAggregateArgs = { - directed?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteCreateFieldInput = { + node: CohortCreateInput; }; -export type PatientHasSampleSamplesConnectionArgs = { - after?: InputMaybe; - directed?: InputMaybe; - first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type PatientPatientAliasesIsAliasArgs = { - directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type PatientPatientAliasesIsAliasAggregateArgs = { - directed?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; }; -export type PatientPatientAliasesIsAliasConnectionArgs = { - after?: InputMaybe; - directed?: InputMaybe; - first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; +export type CohortCompleteCohortsHasCohortCompleteNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + cohortId_AVERAGE_EQUAL?: InputMaybe; + cohortId_AVERAGE_GT?: InputMaybe; + cohortId_AVERAGE_GTE?: InputMaybe; + cohortId_AVERAGE_LT?: InputMaybe; + cohortId_AVERAGE_LTE?: InputMaybe; + cohortId_EQUAL?: InputMaybe; + cohortId_GT?: InputMaybe; + cohortId_GTE?: InputMaybe; + cohortId_LONGEST_EQUAL?: InputMaybe; + cohortId_LONGEST_GT?: InputMaybe; + cohortId_LONGEST_GTE?: InputMaybe; + cohortId_LONGEST_LT?: InputMaybe; + cohortId_LONGEST_LTE?: InputMaybe; + cohortId_LT?: InputMaybe; + cohortId_LTE?: InputMaybe; + cohortId_SHORTEST_EQUAL?: InputMaybe; + cohortId_SHORTEST_GT?: InputMaybe; + cohortId_SHORTEST_GTE?: InputMaybe; + cohortId_SHORTEST_LT?: InputMaybe; + cohortId_SHORTEST_LTE?: InputMaybe; +}; + +export type CohortCompleteCohortsHasCohortCompleteRelationship = { + __typename?: "CohortCompleteCohortsHasCohortCompleteRelationship"; + cursor: Scalars["String"]; + node: Cohort; }; -export type PatientAggregateSelection = { - __typename?: "PatientAggregateSelection"; - count: Scalars["Int"]; - smilePatientId: StringAggregateSelectionNonNullable; +export type CohortCompleteCohortsHasCohortCompleteUpdateConnectionInput = { + node?: InputMaybe; }; -export type PatientAlias = { - __typename?: "PatientAlias"; - isAliasPatients: Array; - isAliasPatientsAggregate?: Maybe; - isAliasPatientsConnection: PatientAliasIsAliasPatientsConnection; - namespace: Scalars["String"]; - value: Scalars["String"]; +export type CohortCompleteCohortsHasCohortCompleteUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; + delete?: InputMaybe< + Array + >; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsArgs = { - directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteConnectInput = { + cohortsHasCohortComplete?: InputMaybe< + Array + >; }; -export type PatientAliasIsAliasPatientsAggregateArgs = { - directed?: InputMaybe; - where?: InputMaybe; +export type CohortCompleteConnectWhere = { + node: CohortCompleteWhere; }; -export type PatientAliasIsAliasPatientsConnectionArgs = { - after?: InputMaybe; - directed?: InputMaybe; - first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; +export type CohortCompleteCreateInput = { + analyst?: InputMaybe; + cohortsHasCohortComplete?: InputMaybe; + date: Scalars["String"]; + endUsers?: InputMaybe>>; + pmUsers?: InputMaybe>>; + projectSubtitle?: InputMaybe; + projectTitle?: InputMaybe; + status: Scalars["String"]; + type: Scalars["String"]; }; -export type PatientAliasAggregateSelection = { - __typename?: "PatientAliasAggregateSelection"; - count: Scalars["Int"]; - namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNonNullable; +export type CohortCompleteDeleteInput = { + cohortsHasCohortComplete?: InputMaybe< + Array + >; }; -export type PatientAliasConnectInput = { - isAliasPatients?: InputMaybe< - Array +export type CohortCompleteDisconnectInput = { + cohortsHasCohortComplete?: InputMaybe< + Array >; }; -export type PatientAliasConnectWhere = { - node: PatientAliasWhere; +export type CohortCompleteEdge = { + __typename?: "CohortCompleteEdge"; + cursor: Scalars["String"]; + node: CohortComplete; }; -export type PatientAliasCreateInput = { - isAliasPatients?: InputMaybe; - namespace: Scalars["String"]; - value: Scalars["String"]; +export type CohortCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more CohortCompleteSort objects to sort CohortCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; }; -export type PatientAliasDeleteInput = { - isAliasPatients?: InputMaybe< - Array +export type CohortCompleteRelationInput = { + cohortsHasCohortComplete?: InputMaybe< + Array >; }; -export type PatientAliasDisconnectInput = { - isAliasPatients?: InputMaybe< - Array +/** Fields to sort CohortCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one CohortCompleteSort object. */ +export type CohortCompleteSort = { + analyst?: InputMaybe; + date?: InputMaybe; + projectSubtitle?: InputMaybe; + projectTitle?: InputMaybe; + status?: InputMaybe; + type?: InputMaybe; +}; + +export type CohortCompleteUpdateInput = { + analyst?: InputMaybe; + cohortsHasCohortComplete?: InputMaybe< + Array >; + date?: InputMaybe; + endUsers?: InputMaybe>>; + endUsers_POP?: InputMaybe; + endUsers_PUSH?: InputMaybe>>; + pmUsers?: InputMaybe>>; + pmUsers_POP?: InputMaybe; + pmUsers_PUSH?: InputMaybe>>; + projectSubtitle?: InputMaybe; + projectTitle?: InputMaybe; + status?: InputMaybe; + type?: InputMaybe; +}; + +export type CohortCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + analyst?: InputMaybe; + analyst_CONTAINS?: InputMaybe; + analyst_ENDS_WITH?: InputMaybe; + analyst_IN?: InputMaybe>>; + analyst_NOT?: InputMaybe; + analyst_NOT_CONTAINS?: InputMaybe; + analyst_NOT_ENDS_WITH?: InputMaybe; + analyst_NOT_IN?: InputMaybe>>; + analyst_NOT_STARTS_WITH?: InputMaybe; + analyst_STARTS_WITH?: InputMaybe; + cohortsHasCohortCompleteAggregate?: InputMaybe; + cohortsHasCohortCompleteConnection_ALL?: InputMaybe; + cohortsHasCohortCompleteConnection_NONE?: InputMaybe; + cohortsHasCohortCompleteConnection_SINGLE?: InputMaybe; + cohortsHasCohortCompleteConnection_SOME?: InputMaybe; + /** Return CohortCompletes where all of the related Cohorts match this filter */ + cohortsHasCohortComplete_ALL?: InputMaybe; + /** Return CohortCompletes where none of the related Cohorts match this filter */ + cohortsHasCohortComplete_NONE?: InputMaybe; + /** Return CohortCompletes where one of the related Cohorts match this filter */ + cohortsHasCohortComplete_SINGLE?: InputMaybe; + /** Return CohortCompletes where some of the related Cohorts match this filter */ + cohortsHasCohortComplete_SOME?: InputMaybe; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + endUsers?: InputMaybe>>; + endUsers_INCLUDES?: InputMaybe; + endUsers_NOT?: InputMaybe>>; + endUsers_NOT_INCLUDES?: InputMaybe; + pmUsers?: InputMaybe>>; + pmUsers_INCLUDES?: InputMaybe; + pmUsers_NOT?: InputMaybe>>; + pmUsers_NOT_INCLUDES?: InputMaybe; + projectSubtitle?: InputMaybe; + projectSubtitle_CONTAINS?: InputMaybe; + projectSubtitle_ENDS_WITH?: InputMaybe; + projectSubtitle_IN?: InputMaybe>>; + projectSubtitle_NOT?: InputMaybe; + projectSubtitle_NOT_CONTAINS?: InputMaybe; + projectSubtitle_NOT_ENDS_WITH?: InputMaybe; + projectSubtitle_NOT_IN?: InputMaybe>>; + projectSubtitle_NOT_STARTS_WITH?: InputMaybe; + projectSubtitle_STARTS_WITH?: InputMaybe; + projectTitle?: InputMaybe; + projectTitle_CONTAINS?: InputMaybe; + projectTitle_ENDS_WITH?: InputMaybe; + projectTitle_IN?: InputMaybe>>; + projectTitle_NOT?: InputMaybe; + projectTitle_NOT_CONTAINS?: InputMaybe; + projectTitle_NOT_ENDS_WITH?: InputMaybe; + projectTitle_NOT_IN?: InputMaybe>>; + projectTitle_NOT_STARTS_WITH?: InputMaybe; + projectTitle_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + type?: InputMaybe; + type_CONTAINS?: InputMaybe; + type_ENDS_WITH?: InputMaybe; + type_IN?: InputMaybe>; + type_NOT?: InputMaybe; + type_NOT_CONTAINS?: InputMaybe; + type_NOT_ENDS_WITH?: InputMaybe; + type_NOT_IN?: InputMaybe>; + type_NOT_STARTS_WITH?: InputMaybe; + type_STARTS_WITH?: InputMaybe; +}; + +export type CohortCompletesConnection = { + __typename?: "CohortCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type PatientAliasEdge = { - __typename?: "PatientAliasEdge"; +export type CohortConnectInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortConnectWhere = { + node: CohortWhere; +}; + +export type CohortCreateInput = { + cohortId: Scalars["String"]; + hasCohortCompleteCohortCompletes?: InputMaybe; + hasCohortSampleSamples?: InputMaybe; +}; + +export type CohortDeleteInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortDisconnectInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortEdge = { + __typename?: "CohortEdge"; cursor: Scalars["String"]; - node: PatientAlias; + node: Cohort; }; -export type PatientAliasIsAliasPatientsAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type CohortHasCohortCompleteCohortCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; count?: InputMaybe; count_GT?: InputMaybe; count_GTE?: InputMaybe; count_LT?: InputMaybe; count_LTE?: InputMaybe; - node?: InputMaybe; + node?: InputMaybe; }; -export type PatientAliasIsAliasPatientsConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsConnection = { - __typename?: "PatientAliasIsAliasPatientsConnection"; - edges: Array; +export type CohortHasCohortCompleteCohortCompletesConnection = { + __typename?: "CohortHasCohortCompleteCohortCompletesConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type PatientAliasIsAliasPatientsConnectionSort = { - node?: InputMaybe; -}; - -export type PatientAliasIsAliasPatientsConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesConnectionSort = { + node?: InputMaybe; }; -export type PatientAliasIsAliasPatientsCreateFieldInput = { - node: PatientCreateInput; +export type CohortHasCohortCompleteCohortCompletesConnectionWhere = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type PatientAliasIsAliasPatientsDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesCreateFieldInput = { + node: CohortCompleteCreateInput; }; -export type PatientAliasIsAliasPatientsDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type CohortHasCohortCompleteCohortCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasIsAliasPatientsNodeAggregationWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - smilePatientId_AVERAGE_EQUAL?: InputMaybe; - smilePatientId_AVERAGE_GT?: InputMaybe; - smilePatientId_AVERAGE_GTE?: InputMaybe; - smilePatientId_AVERAGE_LT?: InputMaybe; - smilePatientId_AVERAGE_LTE?: InputMaybe; - smilePatientId_EQUAL?: InputMaybe; - smilePatientId_GT?: InputMaybe; - smilePatientId_GTE?: InputMaybe; - smilePatientId_LONGEST_EQUAL?: InputMaybe; - smilePatientId_LONGEST_GT?: InputMaybe; - smilePatientId_LONGEST_GTE?: InputMaybe; - smilePatientId_LONGEST_LT?: InputMaybe; - smilePatientId_LONGEST_LTE?: InputMaybe; - smilePatientId_LT?: InputMaybe; - smilePatientId_LTE?: InputMaybe; - smilePatientId_SHORTEST_EQUAL?: InputMaybe; - smilePatientId_SHORTEST_GT?: InputMaybe; - smilePatientId_SHORTEST_GTE?: InputMaybe; - smilePatientId_SHORTEST_LT?: InputMaybe; - smilePatientId_SHORTEST_LTE?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; }; -export type PatientAliasIsAliasPatientsRelationship = { - __typename?: "PatientAliasIsAliasPatientsRelationship"; +export type CohortHasCohortCompleteCohortCompletesNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + analyst_AVERAGE_EQUAL?: InputMaybe; + analyst_AVERAGE_GT?: InputMaybe; + analyst_AVERAGE_GTE?: InputMaybe; + analyst_AVERAGE_LT?: InputMaybe; + analyst_AVERAGE_LTE?: InputMaybe; + analyst_EQUAL?: InputMaybe; + analyst_GT?: InputMaybe; + analyst_GTE?: InputMaybe; + analyst_LONGEST_EQUAL?: InputMaybe; + analyst_LONGEST_GT?: InputMaybe; + analyst_LONGEST_GTE?: InputMaybe; + analyst_LONGEST_LT?: InputMaybe; + analyst_LONGEST_LTE?: InputMaybe; + analyst_LT?: InputMaybe; + analyst_LTE?: InputMaybe; + analyst_SHORTEST_EQUAL?: InputMaybe; + analyst_SHORTEST_GT?: InputMaybe; + analyst_SHORTEST_GTE?: InputMaybe; + analyst_SHORTEST_LT?: InputMaybe; + analyst_SHORTEST_LTE?: InputMaybe; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + projectSubtitle_AVERAGE_EQUAL?: InputMaybe; + projectSubtitle_AVERAGE_GT?: InputMaybe; + projectSubtitle_AVERAGE_GTE?: InputMaybe; + projectSubtitle_AVERAGE_LT?: InputMaybe; + projectSubtitle_AVERAGE_LTE?: InputMaybe; + projectSubtitle_EQUAL?: InputMaybe; + projectSubtitle_GT?: InputMaybe; + projectSubtitle_GTE?: InputMaybe; + projectSubtitle_LONGEST_EQUAL?: InputMaybe; + projectSubtitle_LONGEST_GT?: InputMaybe; + projectSubtitle_LONGEST_GTE?: InputMaybe; + projectSubtitle_LONGEST_LT?: InputMaybe; + projectSubtitle_LONGEST_LTE?: InputMaybe; + projectSubtitle_LT?: InputMaybe; + projectSubtitle_LTE?: InputMaybe; + projectSubtitle_SHORTEST_EQUAL?: InputMaybe; + projectSubtitle_SHORTEST_GT?: InputMaybe; + projectSubtitle_SHORTEST_GTE?: InputMaybe; + projectSubtitle_SHORTEST_LT?: InputMaybe; + projectSubtitle_SHORTEST_LTE?: InputMaybe; + projectTitle_AVERAGE_EQUAL?: InputMaybe; + projectTitle_AVERAGE_GT?: InputMaybe; + projectTitle_AVERAGE_GTE?: InputMaybe; + projectTitle_AVERAGE_LT?: InputMaybe; + projectTitle_AVERAGE_LTE?: InputMaybe; + projectTitle_EQUAL?: InputMaybe; + projectTitle_GT?: InputMaybe; + projectTitle_GTE?: InputMaybe; + projectTitle_LONGEST_EQUAL?: InputMaybe; + projectTitle_LONGEST_GT?: InputMaybe; + projectTitle_LONGEST_GTE?: InputMaybe; + projectTitle_LONGEST_LT?: InputMaybe; + projectTitle_LONGEST_LTE?: InputMaybe; + projectTitle_LT?: InputMaybe; + projectTitle_LTE?: InputMaybe; + projectTitle_SHORTEST_EQUAL?: InputMaybe; + projectTitle_SHORTEST_GT?: InputMaybe; + projectTitle_SHORTEST_GTE?: InputMaybe; + projectTitle_SHORTEST_LT?: InputMaybe; + projectTitle_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; + type_AVERAGE_EQUAL?: InputMaybe; + type_AVERAGE_GT?: InputMaybe; + type_AVERAGE_GTE?: InputMaybe; + type_AVERAGE_LT?: InputMaybe; + type_AVERAGE_LTE?: InputMaybe; + type_EQUAL?: InputMaybe; + type_GT?: InputMaybe; + type_GTE?: InputMaybe; + type_LONGEST_EQUAL?: InputMaybe; + type_LONGEST_GT?: InputMaybe; + type_LONGEST_GTE?: InputMaybe; + type_LONGEST_LT?: InputMaybe; + type_LONGEST_LTE?: InputMaybe; + type_LT?: InputMaybe; + type_LTE?: InputMaybe; + type_SHORTEST_EQUAL?: InputMaybe; + type_SHORTEST_GT?: InputMaybe; + type_SHORTEST_GTE?: InputMaybe; + type_SHORTEST_LT?: InputMaybe; + type_SHORTEST_LTE?: InputMaybe; +}; + +export type CohortHasCohortCompleteCohortCompletesRelationship = { + __typename?: "CohortHasCohortCompleteCohortCompletesRelationship"; cursor: Scalars["String"]; - node: Patient; + node: CohortComplete; }; -export type PatientAliasIsAliasPatientsUpdateConnectionInput = { - node?: InputMaybe; +export type CohortHasCohortCompleteCohortCompletesUpdateConnectionInput = { + node?: InputMaybe; }; -export type PatientAliasIsAliasPatientsUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; +export type CohortHasCohortCompleteCohortCompletesUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; + delete?: InputMaybe< + Array + >; disconnect?: InputMaybe< - Array + Array >; - update?: InputMaybe; - where?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; }; -export type PatientAliasOptions = { - limit?: InputMaybe; - offset?: InputMaybe; - /** Specify one or more PatientAliasSort objects to sort PatientAliases by. The sorts will be applied in the order in which they are arranged in the array. */ - sort?: InputMaybe>; +export type CohortHasCohortSampleSamplesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; }; -export type PatientAliasPatientIsAliasPatientsAggregationSelection = { - __typename?: "PatientAliasPatientIsAliasPatientsAggregationSelection"; - count: Scalars["Int"]; - node?: Maybe; +export type CohortHasCohortSampleSamplesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type PatientAliasPatientIsAliasPatientsNodeAggregateSelection = { - __typename?: "PatientAliasPatientIsAliasPatientsNodeAggregateSelection"; - smilePatientId: StringAggregateSelectionNonNullable; +export type CohortHasCohortSampleSamplesConnection = { + __typename?: "CohortHasCohortSampleSamplesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type PatientAliasRelationInput = { - isAliasPatients?: InputMaybe< - Array - >; +export type CohortHasCohortSampleSamplesConnectionSort = { + node?: InputMaybe; }; -/** Fields to sort PatientAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientAliasSort object. */ -export type PatientAliasSort = { - namespace?: InputMaybe; - value?: InputMaybe; +export type CohortHasCohortSampleSamplesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type PatientAliasUpdateInput = { - isAliasPatients?: InputMaybe< - Array - >; - namespace?: InputMaybe; - value?: InputMaybe; +export type CohortHasCohortSampleSamplesCreateFieldInput = { + node: SampleCreateInput; }; -export type PatientAliasWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - isAliasPatientsAggregate?: InputMaybe; - isAliasPatientsConnection_ALL?: InputMaybe; - isAliasPatientsConnection_NONE?: InputMaybe; - isAliasPatientsConnection_SINGLE?: InputMaybe; - isAliasPatientsConnection_SOME?: InputMaybe; - /** Return PatientAliases where all of the related Patients match this filter */ - isAliasPatients_ALL?: InputMaybe; - /** Return PatientAliases where none of the related Patients match this filter */ - isAliasPatients_NONE?: InputMaybe; - /** Return PatientAliases where one of the related Patients match this filter */ - isAliasPatients_SINGLE?: InputMaybe; - /** Return PatientAliases where some of the related Patients match this filter */ - isAliasPatients_SOME?: InputMaybe; - namespace?: InputMaybe; - namespace_CONTAINS?: InputMaybe; - namespace_ENDS_WITH?: InputMaybe; - namespace_IN?: InputMaybe>; - namespace_NOT?: InputMaybe; - namespace_NOT_CONTAINS?: InputMaybe; - namespace_NOT_ENDS_WITH?: InputMaybe; - namespace_NOT_IN?: InputMaybe>; - namespace_NOT_STARTS_WITH?: InputMaybe; - namespace_STARTS_WITH?: InputMaybe; - value?: InputMaybe; - value_CONTAINS?: InputMaybe; - value_ENDS_WITH?: InputMaybe; - value_IN?: InputMaybe>; - value_NOT?: InputMaybe; - value_NOT_CONTAINS?: InputMaybe; - value_NOT_ENDS_WITH?: InputMaybe; - value_NOT_IN?: InputMaybe>; - value_NOT_STARTS_WITH?: InputMaybe; - value_STARTS_WITH?: InputMaybe; -}; - -export type PatientAliasesConnection = { - __typename?: "PatientAliasesConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; -}; - -export type PatientConnectInput = { - hasSampleSamples?: InputMaybe< - Array - >; - patientAliasesIsAlias?: InputMaybe< - Array - >; -}; - -export type PatientConnectWhere = { - node: PatientWhere; -}; - -export type PatientCreateInput = { - hasSampleSamples?: InputMaybe; - patientAliasesIsAlias?: InputMaybe; - smilePatientId: Scalars["String"]; -}; - -export type PatientDeleteInput = { - hasSampleSamples?: InputMaybe>; - patientAliasesIsAlias?: InputMaybe< - Array - >; -}; - -export type PatientDisconnectInput = { - hasSampleSamples?: InputMaybe< - Array - >; - patientAliasesIsAlias?: InputMaybe< - Array - >; -}; - -export type PatientEdge = { - __typename?: "PatientEdge"; - cursor: Scalars["String"]; - node: Patient; -}; - -export type PatientHasSampleSamplesAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - count?: InputMaybe; - count_GT?: InputMaybe; - count_GTE?: InputMaybe; - count_LT?: InputMaybe; - count_LTE?: InputMaybe; - node?: InputMaybe; -}; - -export type PatientHasSampleSamplesConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; -}; - -export type PatientHasSampleSamplesConnection = { - __typename?: "PatientHasSampleSamplesConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; -}; - -export type PatientHasSampleSamplesConnectionSort = { - node?: InputMaybe; -}; - -export type PatientHasSampleSamplesConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; -}; - -export type PatientHasSampleSamplesCreateFieldInput = { - node: SampleCreateInput; -}; - -export type PatientHasSampleSamplesDeleteFieldInput = { +export type CohortHasCohortSampleSamplesDeleteFieldInput = { delete?: InputMaybe; - where?: InputMaybe; + where?: InputMaybe; }; -export type PatientHasSampleSamplesDisconnectFieldInput = { +export type CohortHasCohortSampleSamplesDisconnectFieldInput = { disconnect?: InputMaybe; - where?: InputMaybe; + where?: InputMaybe; }; -export type PatientHasSampleSamplesFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type CohortHasCohortSampleSamplesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; }; -export type PatientHasSampleSamplesNodeAggregationWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type CohortHasCohortSampleSamplesNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; datasource_AVERAGE_EQUAL?: InputMaybe; datasource_AVERAGE_GT?: InputMaybe; datasource_AVERAGE_GTE?: InputMaybe; @@ -775,436 +1047,1688 @@ export type PatientHasSampleSamplesNodeAggregationWhereInput = { smileSampleId_SHORTEST_LTE?: InputMaybe; }; -export type PatientHasSampleSamplesRelationship = { - __typename?: "PatientHasSampleSamplesRelationship"; +export type CohortHasCohortSampleSamplesRelationship = { + __typename?: "CohortHasCohortSampleSamplesRelationship"; cursor: Scalars["String"]; node: Sample; }; -export type PatientHasSampleSamplesUpdateConnectionInput = { +export type CohortHasCohortSampleSamplesUpdateConnectionInput = { node?: InputMaybe; }; -export type PatientHasSampleSamplesUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; - disconnect?: InputMaybe>; - update?: InputMaybe; - where?: InputMaybe; -}; - -export type PatientIdsTriplet = { - __typename?: "PatientIdsTriplet"; - CMO_ID?: Maybe; - DMP_ID?: Maybe; - PT_MRN?: Maybe; +export type CohortHasCohortSampleSamplesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; }; -export type PatientOptions = { +export type CohortOptions = { limit?: InputMaybe; offset?: InputMaybe; - /** Specify one or more PatientSort objects to sort Patients by. The sorts will be applied in the order in which they are arranged in the array. */ - sort?: InputMaybe>; + /** Specify one or more CohortSort objects to sort Cohorts by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; }; -export type PatientPatientAliasPatientAliasesIsAliasAggregationSelection = { - __typename?: "PatientPatientAliasPatientAliasesIsAliasAggregationSelection"; +export type CohortRelationInput = { + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; +}; + +export type CohortSampleHasCohortSampleSamplesAggregationSelection = { + __typename?: "CohortSampleHasCohortSampleSamplesAggregationSelection"; count: Scalars["Int"]; - node?: Maybe; + node?: Maybe; }; -export type PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection = { - __typename?: "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection"; - namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNonNullable; +export type CohortSampleHasCohortSampleSamplesNodeAggregateSelection = { + __typename?: "CohortSampleHasCohortSampleSamplesNodeAggregateSelection"; + datasource: StringAggregateSelectionNonNullable; + sampleCategory: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + smileSampleId: StringAggregateSelectionNonNullable; }; -export type PatientPatientAliasesIsAliasAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - count?: InputMaybe; - count_GT?: InputMaybe; - count_GTE?: InputMaybe; - count_LT?: InputMaybe; - count_LTE?: InputMaybe; - node?: InputMaybe; +/** Fields to sort Cohorts by. The order in which sorts are applied is not guaranteed when specifying many fields in one CohortSort object. */ +export type CohortSort = { + cohortId?: InputMaybe; }; -export type PatientPatientAliasesIsAliasConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; +export type CohortUpdateInput = { + cohortId?: InputMaybe; + hasCohortCompleteCohortCompletes?: InputMaybe< + Array + >; + hasCohortSampleSamples?: InputMaybe< + Array + >; }; -export type PatientPatientAliasesIsAliasConnection = { - __typename?: "PatientPatientAliasesIsAliasConnection"; - edges: Array; +export type CohortWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + cohortId?: InputMaybe; + cohortId_CONTAINS?: InputMaybe; + cohortId_ENDS_WITH?: InputMaybe; + cohortId_IN?: InputMaybe>; + cohortId_NOT?: InputMaybe; + cohortId_NOT_CONTAINS?: InputMaybe; + cohortId_NOT_ENDS_WITH?: InputMaybe; + cohortId_NOT_IN?: InputMaybe>; + cohortId_NOT_STARTS_WITH?: InputMaybe; + cohortId_STARTS_WITH?: InputMaybe; + hasCohortCompleteCohortCompletesAggregate?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_ALL?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_NONE?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_SINGLE?: InputMaybe; + hasCohortCompleteCohortCompletesConnection_SOME?: InputMaybe; + /** Return Cohorts where all of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_ALL?: InputMaybe; + /** Return Cohorts where none of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_NONE?: InputMaybe; + /** Return Cohorts where one of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_SINGLE?: InputMaybe; + /** Return Cohorts where some of the related CohortCompletes match this filter */ + hasCohortCompleteCohortCompletes_SOME?: InputMaybe; + hasCohortSampleSamplesAggregate?: InputMaybe; + hasCohortSampleSamplesConnection_ALL?: InputMaybe; + hasCohortSampleSamplesConnection_NONE?: InputMaybe; + hasCohortSampleSamplesConnection_SINGLE?: InputMaybe; + hasCohortSampleSamplesConnection_SOME?: InputMaybe; + /** Return Cohorts where all of the related Samples match this filter */ + hasCohortSampleSamples_ALL?: InputMaybe; + /** Return Cohorts where none of the related Samples match this filter */ + hasCohortSampleSamples_NONE?: InputMaybe; + /** Return Cohorts where one of the related Samples match this filter */ + hasCohortSampleSamples_SINGLE?: InputMaybe; + /** Return Cohorts where some of the related Samples match this filter */ + hasCohortSampleSamples_SOME?: InputMaybe; +}; + +export type CohortsConnection = { + __typename?: "CohortsConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type PatientPatientAliasesIsAliasConnectionSort = { - node?: InputMaybe; +export type CreateBamCompletesMutationResponse = { + __typename?: "CreateBamCompletesMutationResponse"; + bamCompletes: Array; + info: CreateInfo; }; -export type PatientPatientAliasesIsAliasConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; +export type CreateCohortCompletesMutationResponse = { + __typename?: "CreateCohortCompletesMutationResponse"; + cohortCompletes: Array; + info: CreateInfo; }; -export type PatientPatientAliasesIsAliasCreateFieldInput = { - node: PatientAliasCreateInput; +export type CreateCohortsMutationResponse = { + __typename?: "CreateCohortsMutationResponse"; + cohorts: Array; + info: CreateInfo; }; -export type PatientPatientAliasesIsAliasDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; +export type CreateInfo = { + __typename?: "CreateInfo"; + bookmark?: Maybe; + nodesCreated: Scalars["Int"]; + relationshipsCreated: Scalars["Int"]; }; -export type PatientPatientAliasesIsAliasDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type CreateMafCompletesMutationResponse = { + __typename?: "CreateMafCompletesMutationResponse"; + info: CreateInfo; + mafCompletes: Array; }; -export type PatientPatientAliasesIsAliasFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type CreatePatientAliasesMutationResponse = { + __typename?: "CreatePatientAliasesMutationResponse"; + info: CreateInfo; + patientAliases: Array; }; -export type PatientPatientAliasesIsAliasNodeAggregationWhereInput = { - AND?: InputMaybe< - Array - >; - OR?: InputMaybe>; - namespace_AVERAGE_EQUAL?: InputMaybe; - namespace_AVERAGE_GT?: InputMaybe; - namespace_AVERAGE_GTE?: InputMaybe; - namespace_AVERAGE_LT?: InputMaybe; - namespace_AVERAGE_LTE?: InputMaybe; - namespace_EQUAL?: InputMaybe; - namespace_GT?: InputMaybe; - namespace_GTE?: InputMaybe; - namespace_LONGEST_EQUAL?: InputMaybe; - namespace_LONGEST_GT?: InputMaybe; - namespace_LONGEST_GTE?: InputMaybe; - namespace_LONGEST_LT?: InputMaybe; - namespace_LONGEST_LTE?: InputMaybe; - namespace_LT?: InputMaybe; - namespace_LTE?: InputMaybe; - namespace_SHORTEST_EQUAL?: InputMaybe; - namespace_SHORTEST_GT?: InputMaybe; - namespace_SHORTEST_GTE?: InputMaybe; - namespace_SHORTEST_LT?: InputMaybe; - namespace_SHORTEST_LTE?: InputMaybe; - value_AVERAGE_EQUAL?: InputMaybe; - value_AVERAGE_GT?: InputMaybe; - value_AVERAGE_GTE?: InputMaybe; - value_AVERAGE_LT?: InputMaybe; - value_AVERAGE_LTE?: InputMaybe; - value_EQUAL?: InputMaybe; - value_GT?: InputMaybe; - value_GTE?: InputMaybe; - value_LONGEST_EQUAL?: InputMaybe; - value_LONGEST_GT?: InputMaybe; - value_LONGEST_GTE?: InputMaybe; - value_LONGEST_LT?: InputMaybe; - value_LONGEST_LTE?: InputMaybe; - value_LT?: InputMaybe; - value_LTE?: InputMaybe; - value_SHORTEST_EQUAL?: InputMaybe; - value_SHORTEST_GT?: InputMaybe; - value_SHORTEST_GTE?: InputMaybe; - value_SHORTEST_LT?: InputMaybe; - value_SHORTEST_LTE?: InputMaybe; +export type CreatePatientsMutationResponse = { + __typename?: "CreatePatientsMutationResponse"; + info: CreateInfo; + patients: Array; }; -export type PatientPatientAliasesIsAliasRelationship = { - __typename?: "PatientPatientAliasesIsAliasRelationship"; - cursor: Scalars["String"]; - node: PatientAlias; +export type CreateProjectsMutationResponse = { + __typename?: "CreateProjectsMutationResponse"; + info: CreateInfo; + projects: Array; }; -export type PatientPatientAliasesIsAliasUpdateConnectionInput = { - node?: InputMaybe; +export type CreateQcCompletesMutationResponse = { + __typename?: "CreateQcCompletesMutationResponse"; + info: CreateInfo; + qcCompletes: Array; }; -export type PatientPatientAliasesIsAliasUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; - disconnect?: InputMaybe< - Array - >; - update?: InputMaybe; - where?: InputMaybe; +export type CreateRequestMetadataMutationResponse = { + __typename?: "CreateRequestMetadataMutationResponse"; + info: CreateInfo; + requestMetadata: Array; }; -export type PatientRelationInput = { - hasSampleSamples?: InputMaybe>; - patientAliasesIsAlias?: InputMaybe< - Array - >; +export type CreateRequestsMutationResponse = { + __typename?: "CreateRequestsMutationResponse"; + info: CreateInfo; + requests: Array; }; -export type PatientSampleHasSampleSamplesAggregationSelection = { - __typename?: "PatientSampleHasSampleSamplesAggregationSelection"; - count: Scalars["Int"]; - node?: Maybe; +export type CreateSampleAliasesMutationResponse = { + __typename?: "CreateSampleAliasesMutationResponse"; + info: CreateInfo; + sampleAliases: Array; }; -export type PatientSampleHasSampleSamplesNodeAggregateSelection = { - __typename?: "PatientSampleHasSampleSamplesNodeAggregateSelection"; - datasource: StringAggregateSelectionNonNullable; - sampleCategory: StringAggregateSelectionNonNullable; - sampleClass: StringAggregateSelectionNonNullable; - smileSampleId: StringAggregateSelectionNonNullable; +export type CreateSampleMetadataMutationResponse = { + __typename?: "CreateSampleMetadataMutationResponse"; + info: CreateInfo; + sampleMetadata: Array; }; -/** Fields to sort Patients by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientSort object. */ -export type PatientSort = { - smilePatientId?: InputMaybe; +export type CreateSamplesMutationResponse = { + __typename?: "CreateSamplesMutationResponse"; + info: CreateInfo; + samples: Array; }; -export type PatientUpdateInput = { - hasSampleSamples?: InputMaybe>; - patientAliasesIsAlias?: InputMaybe< - Array - >; - smilePatientId?: InputMaybe; +export type CreateStatusesMutationResponse = { + __typename?: "CreateStatusesMutationResponse"; + info: CreateInfo; + statuses: Array; }; -export type PatientWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - hasSampleSamplesAggregate?: InputMaybe; - hasSampleSamplesConnection_ALL?: InputMaybe; - hasSampleSamplesConnection_NONE?: InputMaybe; - hasSampleSamplesConnection_SINGLE?: InputMaybe; - hasSampleSamplesConnection_SOME?: InputMaybe; - /** Return Patients where all of the related Samples match this filter */ - hasSampleSamples_ALL?: InputMaybe; - /** Return Patients where none of the related Samples match this filter */ - hasSampleSamples_NONE?: InputMaybe; - /** Return Patients where one of the related Samples match this filter */ - hasSampleSamples_SINGLE?: InputMaybe; - /** Return Patients where some of the related Samples match this filter */ - hasSampleSamples_SOME?: InputMaybe; - patientAliasesIsAliasAggregate?: InputMaybe; - patientAliasesIsAliasConnection_ALL?: InputMaybe; - patientAliasesIsAliasConnection_NONE?: InputMaybe; - patientAliasesIsAliasConnection_SINGLE?: InputMaybe; - patientAliasesIsAliasConnection_SOME?: InputMaybe; - /** Return Patients where all of the related PatientAliases match this filter */ - patientAliasesIsAlias_ALL?: InputMaybe; - /** Return Patients where none of the related PatientAliases match this filter */ - patientAliasesIsAlias_NONE?: InputMaybe; - /** Return Patients where one of the related PatientAliases match this filter */ - patientAliasesIsAlias_SINGLE?: InputMaybe; - /** Return Patients where some of the related PatientAliases match this filter */ - patientAliasesIsAlias_SOME?: InputMaybe; - smilePatientId?: InputMaybe; - smilePatientId_CONTAINS?: InputMaybe; - smilePatientId_ENDS_WITH?: InputMaybe; - smilePatientId_IN?: InputMaybe>; - smilePatientId_NOT?: InputMaybe; - smilePatientId_NOT_CONTAINS?: InputMaybe; - smilePatientId_NOT_ENDS_WITH?: InputMaybe; - smilePatientId_NOT_IN?: InputMaybe>; - smilePatientId_NOT_STARTS_WITH?: InputMaybe; - smilePatientId_STARTS_WITH?: InputMaybe; +export type CreateTemposMutationResponse = { + __typename?: "CreateTemposMutationResponse"; + info: CreateInfo; + tempos: Array; }; -export type PatientsConnection = { - __typename?: "PatientsConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; +export type DeleteInfo = { + __typename?: "DeleteInfo"; + bookmark?: Maybe; + nodesDeleted: Scalars["Int"]; + relationshipsDeleted: Scalars["Int"]; }; -export type Project = { - __typename?: "Project"; - hasRequestRequests: Array; - hasRequestRequestsAggregate?: Maybe; - hasRequestRequestsConnection: ProjectHasRequestRequestsConnection; - igoProjectId: Scalars["String"]; - namespace: Scalars["String"]; +export type MafComplete = { + __typename?: "MafComplete"; + date: Scalars["String"]; + normalPrimaryId: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent: Array; + temposHasEventAggregate?: Maybe; + temposHasEventConnection: MafCompleteTemposHasEventConnection; }; -export type ProjectHasRequestRequestsArgs = { +export type MafCompleteTemposHasEventArgs = { directed?: InputMaybe; - options?: InputMaybe; - where?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsAggregateArgs = { +export type MafCompleteTemposHasEventAggregateArgs = { directed?: InputMaybe; - where?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsConnectionArgs = { +export type MafCompleteTemposHasEventConnectionArgs = { after?: InputMaybe; directed?: InputMaybe; first?: InputMaybe; - sort?: InputMaybe>; - where?: InputMaybe; + where?: InputMaybe; }; -export type ProjectAggregateSelection = { - __typename?: "ProjectAggregateSelection"; +export type MafCompleteAggregateSelection = { + __typename?: "MafCompleteAggregateSelection"; count: Scalars["Int"]; - igoProjectId: StringAggregateSelectionNonNullable; - namespace: StringAggregateSelectionNonNullable; + date: StringAggregateSelectionNonNullable; + normalPrimaryId: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; }; -export type ProjectConnectInput = { - hasRequestRequests?: InputMaybe< - Array +export type MafCompleteConnectInput = { + temposHasEvent?: InputMaybe< + Array >; }; -export type ProjectConnectWhere = { - node: ProjectWhere; +export type MafCompleteConnectWhere = { + node: MafCompleteWhere; }; -export type ProjectCreateInput = { - hasRequestRequests?: InputMaybe; - igoProjectId: Scalars["String"]; - namespace: Scalars["String"]; +export type MafCompleteCreateInput = { + date: Scalars["String"]; + normalPrimaryId: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent?: InputMaybe; }; -export type ProjectDeleteInput = { - hasRequestRequests?: InputMaybe< - Array - >; +export type MafCompleteDeleteInput = { + temposHasEvent?: InputMaybe>; }; -export type ProjectDisconnectInput = { - hasRequestRequests?: InputMaybe< - Array +export type MafCompleteDisconnectInput = { + temposHasEvent?: InputMaybe< + Array >; }; -export type ProjectEdge = { - __typename?: "ProjectEdge"; +export type MafCompleteEdge = { + __typename?: "MafCompleteEdge"; cursor: Scalars["String"]; - node: Project; + node: MafComplete; }; -export type ProjectHasRequestRequestsAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; +export type MafCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more MafCompleteSort objects to sort MafCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type MafCompleteRelationInput = { + temposHasEvent?: InputMaybe>; +}; + +/** Fields to sort MafCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one MafCompleteSort object. */ +export type MafCompleteSort = { + date?: InputMaybe; + normalPrimaryId?: InputMaybe; + status?: InputMaybe; +}; + +export type MafCompleteTempoTemposHasEventAggregationSelection = { + __typename?: "MafCompleteTempoTemposHasEventAggregationSelection"; + count: Scalars["Int"]; +}; + +export type MafCompleteTemposHasEventAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; count?: InputMaybe; count_GT?: InputMaybe; count_GTE?: InputMaybe; count_LT?: InputMaybe; count_LTE?: InputMaybe; - node?: InputMaybe; }; -export type ProjectHasRequestRequestsConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; +export type MafCompleteTemposHasEventConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsConnection = { - __typename?: "ProjectHasRequestRequestsConnection"; - edges: Array; +export type MafCompleteTemposHasEventConnection = { + __typename?: "MafCompleteTemposHasEventConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type ProjectHasRequestRequestsConnectionSort = { - node?: InputMaybe; +export type MafCompleteTemposHasEventConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; }; -export type ProjectHasRequestRequestsConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; +export type MafCompleteTemposHasEventCreateFieldInput = { + node: TempoCreateInput; }; -export type ProjectHasRequestRequestsCreateFieldInput = { - node: RequestCreateInput; +export type MafCompleteTemposHasEventDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; +export type MafCompleteTemposHasEventDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; }; -export type ProjectHasRequestRequestsDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type MafCompleteTemposHasEventFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; }; -export type ProjectHasRequestRequestsFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; +export type MafCompleteTemposHasEventRelationship = { + __typename?: "MafCompleteTemposHasEventRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type MafCompleteTemposHasEventUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type MafCompleteTemposHasEventUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MafCompleteUpdateInput = { + date?: InputMaybe; + normalPrimaryId?: InputMaybe; + status?: InputMaybe; + temposHasEvent?: InputMaybe>; +}; + +export type MafCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + normalPrimaryId?: InputMaybe; + normalPrimaryId_CONTAINS?: InputMaybe; + normalPrimaryId_ENDS_WITH?: InputMaybe; + normalPrimaryId_IN?: InputMaybe>; + normalPrimaryId_NOT?: InputMaybe; + normalPrimaryId_NOT_CONTAINS?: InputMaybe; + normalPrimaryId_NOT_ENDS_WITH?: InputMaybe; + normalPrimaryId_NOT_IN?: InputMaybe>; + normalPrimaryId_NOT_STARTS_WITH?: InputMaybe; + normalPrimaryId_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + temposHasEventAggregate?: InputMaybe; + temposHasEventConnection_ALL?: InputMaybe; + temposHasEventConnection_NONE?: InputMaybe; + temposHasEventConnection_SINGLE?: InputMaybe; + temposHasEventConnection_SOME?: InputMaybe; + /** Return MafCompletes where all of the related Tempos match this filter */ + temposHasEvent_ALL?: InputMaybe; + /** Return MafCompletes where none of the related Tempos match this filter */ + temposHasEvent_NONE?: InputMaybe; + /** Return MafCompletes where one of the related Tempos match this filter */ + temposHasEvent_SINGLE?: InputMaybe; + /** Return MafCompletes where some of the related Tempos match this filter */ + temposHasEvent_SOME?: InputMaybe; +}; + +export type MafCompletesConnection = { + __typename?: "MafCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; }; -export type ProjectHasRequestRequestsNodeAggregationWhereInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - dataAccessEmails_AVERAGE_EQUAL?: InputMaybe; - dataAccessEmails_AVERAGE_GT?: InputMaybe; - dataAccessEmails_AVERAGE_GTE?: InputMaybe; - dataAccessEmails_AVERAGE_LT?: InputMaybe; - dataAccessEmails_AVERAGE_LTE?: InputMaybe; - dataAccessEmails_EQUAL?: InputMaybe; - dataAccessEmails_GT?: InputMaybe; - dataAccessEmails_GTE?: InputMaybe; - dataAccessEmails_LONGEST_EQUAL?: InputMaybe; - dataAccessEmails_LONGEST_GT?: InputMaybe; - dataAccessEmails_LONGEST_GTE?: InputMaybe; - dataAccessEmails_LONGEST_LT?: InputMaybe; - dataAccessEmails_LONGEST_LTE?: InputMaybe; - dataAccessEmails_LT?: InputMaybe; - dataAccessEmails_LTE?: InputMaybe; - dataAccessEmails_SHORTEST_EQUAL?: InputMaybe; - dataAccessEmails_SHORTEST_GT?: InputMaybe; - dataAccessEmails_SHORTEST_GTE?: InputMaybe; - dataAccessEmails_SHORTEST_LT?: InputMaybe; - dataAccessEmails_SHORTEST_LTE?: InputMaybe; - dataAnalystEmail_AVERAGE_EQUAL?: InputMaybe; - dataAnalystEmail_AVERAGE_GT?: InputMaybe; - dataAnalystEmail_AVERAGE_GTE?: InputMaybe; - dataAnalystEmail_AVERAGE_LT?: InputMaybe; - dataAnalystEmail_AVERAGE_LTE?: InputMaybe; - dataAnalystEmail_EQUAL?: InputMaybe; - dataAnalystEmail_GT?: InputMaybe; - dataAnalystEmail_GTE?: InputMaybe; - dataAnalystEmail_LONGEST_EQUAL?: InputMaybe; - dataAnalystEmail_LONGEST_GT?: InputMaybe; - dataAnalystEmail_LONGEST_GTE?: InputMaybe; - dataAnalystEmail_LONGEST_LT?: InputMaybe; - dataAnalystEmail_LONGEST_LTE?: InputMaybe; - dataAnalystEmail_LT?: InputMaybe; - dataAnalystEmail_LTE?: InputMaybe; - dataAnalystEmail_SHORTEST_EQUAL?: InputMaybe; - dataAnalystEmail_SHORTEST_GT?: InputMaybe; - dataAnalystEmail_SHORTEST_GTE?: InputMaybe; - dataAnalystEmail_SHORTEST_LT?: InputMaybe; - dataAnalystEmail_SHORTEST_LTE?: InputMaybe; - dataAnalystName_AVERAGE_EQUAL?: InputMaybe; - dataAnalystName_AVERAGE_GT?: InputMaybe; - dataAnalystName_AVERAGE_GTE?: InputMaybe; - dataAnalystName_AVERAGE_LT?: InputMaybe; - dataAnalystName_AVERAGE_LTE?: InputMaybe; - dataAnalystName_EQUAL?: InputMaybe; - dataAnalystName_GT?: InputMaybe; - dataAnalystName_GTE?: InputMaybe; - dataAnalystName_LONGEST_EQUAL?: InputMaybe; - dataAnalystName_LONGEST_GT?: InputMaybe; - dataAnalystName_LONGEST_GTE?: InputMaybe; - dataAnalystName_LONGEST_LT?: InputMaybe; - dataAnalystName_LONGEST_LTE?: InputMaybe; - dataAnalystName_LT?: InputMaybe; - dataAnalystName_LTE?: InputMaybe; - dataAnalystName_SHORTEST_EQUAL?: InputMaybe; - dataAnalystName_SHORTEST_GT?: InputMaybe; +export type Mutation = { + __typename?: "Mutation"; + createBamCompletes: CreateBamCompletesMutationResponse; + createCohortCompletes: CreateCohortCompletesMutationResponse; + createCohorts: CreateCohortsMutationResponse; + createMafCompletes: CreateMafCompletesMutationResponse; + createPatientAliases: CreatePatientAliasesMutationResponse; + createPatients: CreatePatientsMutationResponse; + createProjects: CreateProjectsMutationResponse; + createQcCompletes: CreateQcCompletesMutationResponse; + createRequestMetadata: CreateRequestMetadataMutationResponse; + createRequests: CreateRequestsMutationResponse; + createSampleAliases: CreateSampleAliasesMutationResponse; + createSampleMetadata: CreateSampleMetadataMutationResponse; + createSamples: CreateSamplesMutationResponse; + createStatuses: CreateStatusesMutationResponse; + createTempos: CreateTemposMutationResponse; + deleteBamCompletes: DeleteInfo; + deleteCohortCompletes: DeleteInfo; + deleteCohorts: DeleteInfo; + deleteMafCompletes: DeleteInfo; + deletePatientAliases: DeleteInfo; + deletePatients: DeleteInfo; + deleteProjects: DeleteInfo; + deleteQcCompletes: DeleteInfo; + deleteRequestMetadata: DeleteInfo; + deleteRequests: DeleteInfo; + deleteSampleAliases: DeleteInfo; + deleteSampleMetadata: DeleteInfo; + deleteSamples: DeleteInfo; + deleteStatuses: DeleteInfo; + deleteTempos: DeleteInfo; + updateBamCompletes: UpdateBamCompletesMutationResponse; + updateCohortCompletes: UpdateCohortCompletesMutationResponse; + updateCohorts: UpdateCohortsMutationResponse; + updateMafCompletes: UpdateMafCompletesMutationResponse; + updatePatientAliases: UpdatePatientAliasesMutationResponse; + updatePatients: UpdatePatientsMutationResponse; + updateProjects: UpdateProjectsMutationResponse; + updateQcCompletes: UpdateQcCompletesMutationResponse; + updateRequestMetadata: UpdateRequestMetadataMutationResponse; + updateRequests: UpdateRequestsMutationResponse; + updateSampleAliases: UpdateSampleAliasesMutationResponse; + updateSampleMetadata: UpdateSampleMetadataMutationResponse; + updateSamples: UpdateSamplesMutationResponse; + updateStatuses: UpdateStatusesMutationResponse; + updateTempos: UpdateTemposMutationResponse; +}; + +export type MutationCreateBamCompletesArgs = { + input: Array; +}; + +export type MutationCreateCohortCompletesArgs = { + input: Array; +}; + +export type MutationCreateCohortsArgs = { + input: Array; +}; + +export type MutationCreateMafCompletesArgs = { + input: Array; +}; + +export type MutationCreatePatientAliasesArgs = { + input: Array; +}; + +export type MutationCreatePatientsArgs = { + input: Array; +}; + +export type MutationCreateProjectsArgs = { + input: Array; +}; + +export type MutationCreateQcCompletesArgs = { + input: Array; +}; + +export type MutationCreateRequestMetadataArgs = { + input: Array; +}; + +export type MutationCreateRequestsArgs = { + input: Array; +}; + +export type MutationCreateSampleAliasesArgs = { + input: Array; +}; + +export type MutationCreateSampleMetadataArgs = { + input: Array; +}; + +export type MutationCreateSamplesArgs = { + input: Array; +}; + +export type MutationCreateStatusesArgs = { + input: Array; +}; + +export type MutationCreateTemposArgs = { + input: Array; +}; + +export type MutationDeleteBamCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteCohortCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteCohortsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteMafCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeletePatientAliasesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeletePatientsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteProjectsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteQcCompletesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteRequestMetadataArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteRequestsArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteSampleAliasesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteSampleMetadataArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteSamplesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteStatusesArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationDeleteTemposArgs = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateBamCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateCohortCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateCohortsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateMafCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdatePatientAliasesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdatePatientsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateProjectsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateQcCompletesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateRequestMetadataArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateRequestsArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateSampleAliasesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateSampleMetadataArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateSamplesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateStatusesArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type MutationUpdateTemposArgs = { + connect?: InputMaybe; + create?: InputMaybe; + delete?: InputMaybe; + disconnect?: InputMaybe; + update?: InputMaybe; + where?: InputMaybe; +}; + +/** Pagination information (Relay) */ +export type PageInfo = { + __typename?: "PageInfo"; + endCursor?: Maybe; + hasNextPage: Scalars["Boolean"]; + hasPreviousPage: Scalars["Boolean"]; + startCursor?: Maybe; +}; + +export type Patient = { + __typename?: "Patient"; + hasSampleSamples: Array; + hasSampleSamplesAggregate?: Maybe; + hasSampleSamplesConnection: PatientHasSampleSamplesConnection; + patientAliasesIsAlias: Array; + patientAliasesIsAliasAggregate?: Maybe; + patientAliasesIsAliasConnection: PatientPatientAliasesIsAliasConnection; + smilePatientId: Scalars["String"]; +}; + +export type PatientHasSampleSamplesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientAggregateSelection = { + __typename?: "PatientAggregateSelection"; + count: Scalars["Int"]; + smilePatientId: StringAggregateSelectionNonNullable; +}; + +export type PatientAlias = { + __typename?: "PatientAlias"; + isAliasPatients: Array; + isAliasPatientsAggregate?: Maybe; + isAliasPatientsConnection: PatientAliasIsAliasPatientsConnection; + namespace: Scalars["String"]; + value: Scalars["String"]; +}; + +export type PatientAliasIsAliasPatientsArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientAliasAggregateSelection = { + __typename?: "PatientAliasAggregateSelection"; + count: Scalars["Int"]; + namespace: StringAggregateSelectionNonNullable; + value: StringAggregateSelectionNonNullable; +}; + +export type PatientAliasConnectInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +export type PatientAliasConnectWhere = { + node: PatientAliasWhere; +}; + +export type PatientAliasCreateInput = { + isAliasPatients?: InputMaybe; + namespace: Scalars["String"]; + value: Scalars["String"]; +}; + +export type PatientAliasDeleteInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +export type PatientAliasDisconnectInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +export type PatientAliasEdge = { + __typename?: "PatientAliasEdge"; + cursor: Scalars["String"]; + node: PatientAlias; +}; + +export type PatientAliasIsAliasPatientsAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnection = { + __typename?: "PatientAliasIsAliasPatientsConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientAliasIsAliasPatientsConnectionSort = { + node?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsCreateFieldInput = { + node: PatientCreateInput; +}; + +export type PatientAliasIsAliasPatientsDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type PatientAliasIsAliasPatientsNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + smilePatientId_AVERAGE_EQUAL?: InputMaybe; + smilePatientId_AVERAGE_GT?: InputMaybe; + smilePatientId_AVERAGE_GTE?: InputMaybe; + smilePatientId_AVERAGE_LT?: InputMaybe; + smilePatientId_AVERAGE_LTE?: InputMaybe; + smilePatientId_EQUAL?: InputMaybe; + smilePatientId_GT?: InputMaybe; + smilePatientId_GTE?: InputMaybe; + smilePatientId_LONGEST_EQUAL?: InputMaybe; + smilePatientId_LONGEST_GT?: InputMaybe; + smilePatientId_LONGEST_GTE?: InputMaybe; + smilePatientId_LONGEST_LT?: InputMaybe; + smilePatientId_LONGEST_LTE?: InputMaybe; + smilePatientId_LT?: InputMaybe; + smilePatientId_LTE?: InputMaybe; + smilePatientId_SHORTEST_EQUAL?: InputMaybe; + smilePatientId_SHORTEST_GT?: InputMaybe; + smilePatientId_SHORTEST_GTE?: InputMaybe; + smilePatientId_SHORTEST_LT?: InputMaybe; + smilePatientId_SHORTEST_LTE?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsRelationship = { + __typename?: "PatientAliasIsAliasPatientsRelationship"; + cursor: Scalars["String"]; + node: Patient; +}; + +export type PatientAliasIsAliasPatientsUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type PatientAliasIsAliasPatientsUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientAliasOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more PatientAliasSort objects to sort PatientAliases by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type PatientAliasPatientIsAliasPatientsAggregationSelection = { + __typename?: "PatientAliasPatientIsAliasPatientsAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type PatientAliasPatientIsAliasPatientsNodeAggregateSelection = { + __typename?: "PatientAliasPatientIsAliasPatientsNodeAggregateSelection"; + smilePatientId: StringAggregateSelectionNonNullable; +}; + +export type PatientAliasRelationInput = { + isAliasPatients?: InputMaybe< + Array + >; +}; + +/** Fields to sort PatientAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientAliasSort object. */ +export type PatientAliasSort = { + namespace?: InputMaybe; + value?: InputMaybe; +}; + +export type PatientAliasUpdateInput = { + isAliasPatients?: InputMaybe< + Array + >; + namespace?: InputMaybe; + value?: InputMaybe; +}; + +export type PatientAliasWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + isAliasPatientsAggregate?: InputMaybe; + isAliasPatientsConnection_ALL?: InputMaybe; + isAliasPatientsConnection_NONE?: InputMaybe; + isAliasPatientsConnection_SINGLE?: InputMaybe; + isAliasPatientsConnection_SOME?: InputMaybe; + /** Return PatientAliases where all of the related Patients match this filter */ + isAliasPatients_ALL?: InputMaybe; + /** Return PatientAliases where none of the related Patients match this filter */ + isAliasPatients_NONE?: InputMaybe; + /** Return PatientAliases where one of the related Patients match this filter */ + isAliasPatients_SINGLE?: InputMaybe; + /** Return PatientAliases where some of the related Patients match this filter */ + isAliasPatients_SOME?: InputMaybe; + namespace?: InputMaybe; + namespace_CONTAINS?: InputMaybe; + namespace_ENDS_WITH?: InputMaybe; + namespace_IN?: InputMaybe>; + namespace_NOT?: InputMaybe; + namespace_NOT_CONTAINS?: InputMaybe; + namespace_NOT_ENDS_WITH?: InputMaybe; + namespace_NOT_IN?: InputMaybe>; + namespace_NOT_STARTS_WITH?: InputMaybe; + namespace_STARTS_WITH?: InputMaybe; + value?: InputMaybe; + value_CONTAINS?: InputMaybe; + value_ENDS_WITH?: InputMaybe; + value_IN?: InputMaybe>; + value_NOT?: InputMaybe; + value_NOT_CONTAINS?: InputMaybe; + value_NOT_ENDS_WITH?: InputMaybe; + value_NOT_IN?: InputMaybe>; + value_NOT_STARTS_WITH?: InputMaybe; + value_STARTS_WITH?: InputMaybe; +}; + +export type PatientAliasesConnection = { + __typename?: "PatientAliasesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientConnectInput = { + hasSampleSamples?: InputMaybe< + Array + >; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientConnectWhere = { + node: PatientWhere; +}; + +export type PatientCreateInput = { + hasSampleSamples?: InputMaybe; + patientAliasesIsAlias?: InputMaybe; + smilePatientId: Scalars["String"]; +}; + +export type PatientDeleteInput = { + hasSampleSamples?: InputMaybe>; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientDisconnectInput = { + hasSampleSamples?: InputMaybe< + Array + >; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientEdge = { + __typename?: "PatientEdge"; + cursor: Scalars["String"]; + node: Patient; +}; + +export type PatientHasSampleSamplesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnection = { + __typename?: "PatientHasSampleSamplesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientHasSampleSamplesConnectionSort = { + node?: InputMaybe; +}; + +export type PatientHasSampleSamplesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type PatientHasSampleSamplesCreateFieldInput = { + node: SampleCreateInput; +}; + +export type PatientHasSampleSamplesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientHasSampleSamplesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type PatientHasSampleSamplesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + datasource_AVERAGE_EQUAL?: InputMaybe; + datasource_AVERAGE_GT?: InputMaybe; + datasource_AVERAGE_GTE?: InputMaybe; + datasource_AVERAGE_LT?: InputMaybe; + datasource_AVERAGE_LTE?: InputMaybe; + datasource_EQUAL?: InputMaybe; + datasource_GT?: InputMaybe; + datasource_GTE?: InputMaybe; + datasource_LONGEST_EQUAL?: InputMaybe; + datasource_LONGEST_GT?: InputMaybe; + datasource_LONGEST_GTE?: InputMaybe; + datasource_LONGEST_LT?: InputMaybe; + datasource_LONGEST_LTE?: InputMaybe; + datasource_LT?: InputMaybe; + datasource_LTE?: InputMaybe; + datasource_SHORTEST_EQUAL?: InputMaybe; + datasource_SHORTEST_GT?: InputMaybe; + datasource_SHORTEST_GTE?: InputMaybe; + datasource_SHORTEST_LT?: InputMaybe; + datasource_SHORTEST_LTE?: InputMaybe; + sampleCategory_AVERAGE_EQUAL?: InputMaybe; + sampleCategory_AVERAGE_GT?: InputMaybe; + sampleCategory_AVERAGE_GTE?: InputMaybe; + sampleCategory_AVERAGE_LT?: InputMaybe; + sampleCategory_AVERAGE_LTE?: InputMaybe; + sampleCategory_EQUAL?: InputMaybe; + sampleCategory_GT?: InputMaybe; + sampleCategory_GTE?: InputMaybe; + sampleCategory_LONGEST_EQUAL?: InputMaybe; + sampleCategory_LONGEST_GT?: InputMaybe; + sampleCategory_LONGEST_GTE?: InputMaybe; + sampleCategory_LONGEST_LT?: InputMaybe; + sampleCategory_LONGEST_LTE?: InputMaybe; + sampleCategory_LT?: InputMaybe; + sampleCategory_LTE?: InputMaybe; + sampleCategory_SHORTEST_EQUAL?: InputMaybe; + sampleCategory_SHORTEST_GT?: InputMaybe; + sampleCategory_SHORTEST_GTE?: InputMaybe; + sampleCategory_SHORTEST_LT?: InputMaybe; + sampleCategory_SHORTEST_LTE?: InputMaybe; + sampleClass_AVERAGE_EQUAL?: InputMaybe; + sampleClass_AVERAGE_GT?: InputMaybe; + sampleClass_AVERAGE_GTE?: InputMaybe; + sampleClass_AVERAGE_LT?: InputMaybe; + sampleClass_AVERAGE_LTE?: InputMaybe; + sampleClass_EQUAL?: InputMaybe; + sampleClass_GT?: InputMaybe; + sampleClass_GTE?: InputMaybe; + sampleClass_LONGEST_EQUAL?: InputMaybe; + sampleClass_LONGEST_GT?: InputMaybe; + sampleClass_LONGEST_GTE?: InputMaybe; + sampleClass_LONGEST_LT?: InputMaybe; + sampleClass_LONGEST_LTE?: InputMaybe; + sampleClass_LT?: InputMaybe; + sampleClass_LTE?: InputMaybe; + sampleClass_SHORTEST_EQUAL?: InputMaybe; + sampleClass_SHORTEST_GT?: InputMaybe; + sampleClass_SHORTEST_GTE?: InputMaybe; + sampleClass_SHORTEST_LT?: InputMaybe; + sampleClass_SHORTEST_LTE?: InputMaybe; + smileSampleId_AVERAGE_EQUAL?: InputMaybe; + smileSampleId_AVERAGE_GT?: InputMaybe; + smileSampleId_AVERAGE_GTE?: InputMaybe; + smileSampleId_AVERAGE_LT?: InputMaybe; + smileSampleId_AVERAGE_LTE?: InputMaybe; + smileSampleId_EQUAL?: InputMaybe; + smileSampleId_GT?: InputMaybe; + smileSampleId_GTE?: InputMaybe; + smileSampleId_LONGEST_EQUAL?: InputMaybe; + smileSampleId_LONGEST_GT?: InputMaybe; + smileSampleId_LONGEST_GTE?: InputMaybe; + smileSampleId_LONGEST_LT?: InputMaybe; + smileSampleId_LONGEST_LTE?: InputMaybe; + smileSampleId_LT?: InputMaybe; + smileSampleId_LTE?: InputMaybe; + smileSampleId_SHORTEST_EQUAL?: InputMaybe; + smileSampleId_SHORTEST_GT?: InputMaybe; + smileSampleId_SHORTEST_GTE?: InputMaybe; + smileSampleId_SHORTEST_LT?: InputMaybe; + smileSampleId_SHORTEST_LTE?: InputMaybe; +}; + +export type PatientHasSampleSamplesRelationship = { + __typename?: "PatientHasSampleSamplesRelationship"; + cursor: Scalars["String"]; + node: Sample; +}; + +export type PatientHasSampleSamplesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type PatientHasSampleSamplesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientIdsTriplet = { + __typename?: "PatientIdsTriplet"; + CMO_ID?: Maybe; + DMP_ID?: Maybe; + PT_MRN?: Maybe; +}; + +export type PatientOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more PatientSort objects to sort Patients by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type PatientPatientAliasPatientAliasesIsAliasAggregationSelection = { + __typename?: "PatientPatientAliasPatientAliasesIsAliasAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection = { + __typename?: "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection"; + namespace: StringAggregateSelectionNonNullable; + value: StringAggregateSelectionNonNullable; +}; + +export type PatientPatientAliasesIsAliasAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnection = { + __typename?: "PatientPatientAliasesIsAliasConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type PatientPatientAliasesIsAliasConnectionSort = { + node?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasCreateFieldInput = { + node: PatientAliasCreateInput; +}; + +export type PatientPatientAliasesIsAliasDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type PatientPatientAliasesIsAliasNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + namespace_AVERAGE_EQUAL?: InputMaybe; + namespace_AVERAGE_GT?: InputMaybe; + namespace_AVERAGE_GTE?: InputMaybe; + namespace_AVERAGE_LT?: InputMaybe; + namespace_AVERAGE_LTE?: InputMaybe; + namespace_EQUAL?: InputMaybe; + namespace_GT?: InputMaybe; + namespace_GTE?: InputMaybe; + namespace_LONGEST_EQUAL?: InputMaybe; + namespace_LONGEST_GT?: InputMaybe; + namespace_LONGEST_GTE?: InputMaybe; + namespace_LONGEST_LT?: InputMaybe; + namespace_LONGEST_LTE?: InputMaybe; + namespace_LT?: InputMaybe; + namespace_LTE?: InputMaybe; + namespace_SHORTEST_EQUAL?: InputMaybe; + namespace_SHORTEST_GT?: InputMaybe; + namespace_SHORTEST_GTE?: InputMaybe; + namespace_SHORTEST_LT?: InputMaybe; + namespace_SHORTEST_LTE?: InputMaybe; + value_AVERAGE_EQUAL?: InputMaybe; + value_AVERAGE_GT?: InputMaybe; + value_AVERAGE_GTE?: InputMaybe; + value_AVERAGE_LT?: InputMaybe; + value_AVERAGE_LTE?: InputMaybe; + value_EQUAL?: InputMaybe; + value_GT?: InputMaybe; + value_GTE?: InputMaybe; + value_LONGEST_EQUAL?: InputMaybe; + value_LONGEST_GT?: InputMaybe; + value_LONGEST_GTE?: InputMaybe; + value_LONGEST_LT?: InputMaybe; + value_LONGEST_LTE?: InputMaybe; + value_LT?: InputMaybe; + value_LTE?: InputMaybe; + value_SHORTEST_EQUAL?: InputMaybe; + value_SHORTEST_GT?: InputMaybe; + value_SHORTEST_GTE?: InputMaybe; + value_SHORTEST_LT?: InputMaybe; + value_SHORTEST_LTE?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasRelationship = { + __typename?: "PatientPatientAliasesIsAliasRelationship"; + cursor: Scalars["String"]; + node: PatientAlias; +}; + +export type PatientPatientAliasesIsAliasUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type PatientPatientAliasesIsAliasUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type PatientRelationInput = { + hasSampleSamples?: InputMaybe>; + patientAliasesIsAlias?: InputMaybe< + Array + >; +}; + +export type PatientSampleHasSampleSamplesAggregationSelection = { + __typename?: "PatientSampleHasSampleSamplesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type PatientSampleHasSampleSamplesNodeAggregateSelection = { + __typename?: "PatientSampleHasSampleSamplesNodeAggregateSelection"; + datasource: StringAggregateSelectionNonNullable; + sampleCategory: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + smileSampleId: StringAggregateSelectionNonNullable; +}; + +/** Fields to sort Patients by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientSort object. */ +export type PatientSort = { + smilePatientId?: InputMaybe; +}; + +export type PatientUpdateInput = { + hasSampleSamples?: InputMaybe>; + patientAliasesIsAlias?: InputMaybe< + Array + >; + smilePatientId?: InputMaybe; +}; + +export type PatientWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + hasSampleSamplesAggregate?: InputMaybe; + hasSampleSamplesConnection_ALL?: InputMaybe; + hasSampleSamplesConnection_NONE?: InputMaybe; + hasSampleSamplesConnection_SINGLE?: InputMaybe; + hasSampleSamplesConnection_SOME?: InputMaybe; + /** Return Patients where all of the related Samples match this filter */ + hasSampleSamples_ALL?: InputMaybe; + /** Return Patients where none of the related Samples match this filter */ + hasSampleSamples_NONE?: InputMaybe; + /** Return Patients where one of the related Samples match this filter */ + hasSampleSamples_SINGLE?: InputMaybe; + /** Return Patients where some of the related Samples match this filter */ + hasSampleSamples_SOME?: InputMaybe; + patientAliasesIsAliasAggregate?: InputMaybe; + patientAliasesIsAliasConnection_ALL?: InputMaybe; + patientAliasesIsAliasConnection_NONE?: InputMaybe; + patientAliasesIsAliasConnection_SINGLE?: InputMaybe; + patientAliasesIsAliasConnection_SOME?: InputMaybe; + /** Return Patients where all of the related PatientAliases match this filter */ + patientAliasesIsAlias_ALL?: InputMaybe; + /** Return Patients where none of the related PatientAliases match this filter */ + patientAliasesIsAlias_NONE?: InputMaybe; + /** Return Patients where one of the related PatientAliases match this filter */ + patientAliasesIsAlias_SINGLE?: InputMaybe; + /** Return Patients where some of the related PatientAliases match this filter */ + patientAliasesIsAlias_SOME?: InputMaybe; + smilePatientId?: InputMaybe; + smilePatientId_CONTAINS?: InputMaybe; + smilePatientId_ENDS_WITH?: InputMaybe; + smilePatientId_IN?: InputMaybe>; + smilePatientId_NOT?: InputMaybe; + smilePatientId_NOT_CONTAINS?: InputMaybe; + smilePatientId_NOT_ENDS_WITH?: InputMaybe; + smilePatientId_NOT_IN?: InputMaybe>; + smilePatientId_NOT_STARTS_WITH?: InputMaybe; + smilePatientId_STARTS_WITH?: InputMaybe; +}; + +export type PatientsConnection = { + __typename?: "PatientsConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type Project = { + __typename?: "Project"; + hasRequestRequests: Array; + hasRequestRequestsAggregate?: Maybe; + hasRequestRequestsConnection: ProjectHasRequestRequestsConnection; + igoProjectId: Scalars["String"]; + namespace: Scalars["String"]; +}; + +export type ProjectHasRequestRequestsArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type ProjectAggregateSelection = { + __typename?: "ProjectAggregateSelection"; + count: Scalars["Int"]; + igoProjectId: StringAggregateSelectionNonNullable; + namespace: StringAggregateSelectionNonNullable; +}; + +export type ProjectConnectInput = { + hasRequestRequests?: InputMaybe< + Array + >; +}; + +export type ProjectConnectWhere = { + node: ProjectWhere; +}; + +export type ProjectCreateInput = { + hasRequestRequests?: InputMaybe; + igoProjectId: Scalars["String"]; + namespace: Scalars["String"]; +}; + +export type ProjectDeleteInput = { + hasRequestRequests?: InputMaybe< + Array + >; +}; + +export type ProjectDisconnectInput = { + hasRequestRequests?: InputMaybe< + Array + >; +}; + +export type ProjectEdge = { + __typename?: "ProjectEdge"; + cursor: Scalars["String"]; + node: Project; +}; + +export type ProjectHasRequestRequestsAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnection = { + __typename?: "ProjectHasRequestRequestsConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type ProjectHasRequestRequestsConnectionSort = { + node?: InputMaybe; +}; + +export type ProjectHasRequestRequestsConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type ProjectHasRequestRequestsCreateFieldInput = { + node: RequestCreateInput; +}; + +export type ProjectHasRequestRequestsDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type ProjectHasRequestRequestsFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type ProjectHasRequestRequestsNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + dataAccessEmails_AVERAGE_EQUAL?: InputMaybe; + dataAccessEmails_AVERAGE_GT?: InputMaybe; + dataAccessEmails_AVERAGE_GTE?: InputMaybe; + dataAccessEmails_AVERAGE_LT?: InputMaybe; + dataAccessEmails_AVERAGE_LTE?: InputMaybe; + dataAccessEmails_EQUAL?: InputMaybe; + dataAccessEmails_GT?: InputMaybe; + dataAccessEmails_GTE?: InputMaybe; + dataAccessEmails_LONGEST_EQUAL?: InputMaybe; + dataAccessEmails_LONGEST_GT?: InputMaybe; + dataAccessEmails_LONGEST_GTE?: InputMaybe; + dataAccessEmails_LONGEST_LT?: InputMaybe; + dataAccessEmails_LONGEST_LTE?: InputMaybe; + dataAccessEmails_LT?: InputMaybe; + dataAccessEmails_LTE?: InputMaybe; + dataAccessEmails_SHORTEST_EQUAL?: InputMaybe; + dataAccessEmails_SHORTEST_GT?: InputMaybe; + dataAccessEmails_SHORTEST_GTE?: InputMaybe; + dataAccessEmails_SHORTEST_LT?: InputMaybe; + dataAccessEmails_SHORTEST_LTE?: InputMaybe; + dataAnalystEmail_AVERAGE_EQUAL?: InputMaybe; + dataAnalystEmail_AVERAGE_GT?: InputMaybe; + dataAnalystEmail_AVERAGE_GTE?: InputMaybe; + dataAnalystEmail_AVERAGE_LT?: InputMaybe; + dataAnalystEmail_AVERAGE_LTE?: InputMaybe; + dataAnalystEmail_EQUAL?: InputMaybe; + dataAnalystEmail_GT?: InputMaybe; + dataAnalystEmail_GTE?: InputMaybe; + dataAnalystEmail_LONGEST_EQUAL?: InputMaybe; + dataAnalystEmail_LONGEST_GT?: InputMaybe; + dataAnalystEmail_LONGEST_GTE?: InputMaybe; + dataAnalystEmail_LONGEST_LT?: InputMaybe; + dataAnalystEmail_LONGEST_LTE?: InputMaybe; + dataAnalystEmail_LT?: InputMaybe; + dataAnalystEmail_LTE?: InputMaybe; + dataAnalystEmail_SHORTEST_EQUAL?: InputMaybe; + dataAnalystEmail_SHORTEST_GT?: InputMaybe; + dataAnalystEmail_SHORTEST_GTE?: InputMaybe; + dataAnalystEmail_SHORTEST_LT?: InputMaybe; + dataAnalystEmail_SHORTEST_LTE?: InputMaybe; + dataAnalystName_AVERAGE_EQUAL?: InputMaybe; + dataAnalystName_AVERAGE_GT?: InputMaybe; + dataAnalystName_AVERAGE_GTE?: InputMaybe; + dataAnalystName_AVERAGE_LT?: InputMaybe; + dataAnalystName_AVERAGE_LTE?: InputMaybe; + dataAnalystName_EQUAL?: InputMaybe; + dataAnalystName_GT?: InputMaybe; + dataAnalystName_GTE?: InputMaybe; + dataAnalystName_LONGEST_EQUAL?: InputMaybe; + dataAnalystName_LONGEST_GT?: InputMaybe; + dataAnalystName_LONGEST_GTE?: InputMaybe; + dataAnalystName_LONGEST_LT?: InputMaybe; + dataAnalystName_LONGEST_LTE?: InputMaybe; + dataAnalystName_LT?: InputMaybe; + dataAnalystName_LTE?: InputMaybe; + dataAnalystName_SHORTEST_EQUAL?: InputMaybe; + dataAnalystName_SHORTEST_GT?: InputMaybe; dataAnalystName_SHORTEST_GTE?: InputMaybe; dataAnalystName_SHORTEST_LT?: InputMaybe; dataAnalystName_SHORTEST_LTE?: InputMaybe; @@ -1650,8 +3174,254 @@ export type ProjectsConnection = { totalCount: Scalars["Int"]; }; +export type QcComplete = { + __typename?: "QcComplete"; + date: Scalars["String"]; + reason: Scalars["String"]; + result: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent: Array; + temposHasEventAggregate?: Maybe; + temposHasEventConnection: QcCompleteTemposHasEventConnection; +}; + +export type QcCompleteTemposHasEventArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteAggregateSelection = { + __typename?: "QcCompleteAggregateSelection"; + count: Scalars["Int"]; + date: StringAggregateSelectionNonNullable; + reason: StringAggregateSelectionNonNullable; + result: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; + +export type QcCompleteConnectInput = { + temposHasEvent?: InputMaybe>; +}; + +export type QcCompleteConnectWhere = { + node: QcCompleteWhere; +}; + +export type QcCompleteCreateInput = { + date: Scalars["String"]; + reason: Scalars["String"]; + result: Scalars["String"]; + status: Scalars["String"]; + temposHasEvent?: InputMaybe; +}; + +export type QcCompleteDeleteInput = { + temposHasEvent?: InputMaybe>; +}; + +export type QcCompleteDisconnectInput = { + temposHasEvent?: InputMaybe< + Array + >; +}; + +export type QcCompleteEdge = { + __typename?: "QcCompleteEdge"; + cursor: Scalars["String"]; + node: QcComplete; +}; + +export type QcCompleteOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** Specify one or more QcCompleteSort objects to sort QcCompletes by. The sorts will be applied in the order in which they are arranged in the array. */ + sort?: InputMaybe>; +}; + +export type QcCompleteRelationInput = { + temposHasEvent?: InputMaybe>; +}; + +/** Fields to sort QcCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one QcCompleteSort object. */ +export type QcCompleteSort = { + date?: InputMaybe; + reason?: InputMaybe; + result?: InputMaybe; + status?: InputMaybe; +}; + +export type QcCompleteTempoTemposHasEventAggregationSelection = { + __typename?: "QcCompleteTempoTemposHasEventAggregationSelection"; + count: Scalars["Int"]; +}; + +export type QcCompleteTemposHasEventAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; +}; + +export type QcCompleteTemposHasEventConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventConnection = { + __typename?: "QcCompleteTemposHasEventConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type QcCompleteTemposHasEventConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type QcCompleteTemposHasEventCreateFieldInput = { + node: TempoCreateInput; +}; + +export type QcCompleteTemposHasEventDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteTemposHasEventFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type QcCompleteTemposHasEventRelationship = { + __typename?: "QcCompleteTemposHasEventRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type QcCompleteTemposHasEventUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type QcCompleteTemposHasEventUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type QcCompleteUpdateInput = { + date?: InputMaybe; + reason?: InputMaybe; + result?: InputMaybe; + status?: InputMaybe; + temposHasEvent?: InputMaybe>; +}; + +export type QcCompleteWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date?: InputMaybe; + date_CONTAINS?: InputMaybe; + date_ENDS_WITH?: InputMaybe; + date_IN?: InputMaybe>; + date_NOT?: InputMaybe; + date_NOT_CONTAINS?: InputMaybe; + date_NOT_ENDS_WITH?: InputMaybe; + date_NOT_IN?: InputMaybe>; + date_NOT_STARTS_WITH?: InputMaybe; + date_STARTS_WITH?: InputMaybe; + reason?: InputMaybe; + reason_CONTAINS?: InputMaybe; + reason_ENDS_WITH?: InputMaybe; + reason_IN?: InputMaybe>; + reason_NOT?: InputMaybe; + reason_NOT_CONTAINS?: InputMaybe; + reason_NOT_ENDS_WITH?: InputMaybe; + reason_NOT_IN?: InputMaybe>; + reason_NOT_STARTS_WITH?: InputMaybe; + reason_STARTS_WITH?: InputMaybe; + result?: InputMaybe; + result_CONTAINS?: InputMaybe; + result_ENDS_WITH?: InputMaybe; + result_IN?: InputMaybe>; + result_NOT?: InputMaybe; + result_NOT_CONTAINS?: InputMaybe; + result_NOT_ENDS_WITH?: InputMaybe; + result_NOT_IN?: InputMaybe>; + result_NOT_STARTS_WITH?: InputMaybe; + result_STARTS_WITH?: InputMaybe; + status?: InputMaybe; + status_CONTAINS?: InputMaybe; + status_ENDS_WITH?: InputMaybe; + status_IN?: InputMaybe>; + status_NOT?: InputMaybe; + status_NOT_CONTAINS?: InputMaybe; + status_NOT_ENDS_WITH?: InputMaybe; + status_NOT_IN?: InputMaybe>; + status_NOT_STARTS_WITH?: InputMaybe; + status_STARTS_WITH?: InputMaybe; + temposHasEventAggregate?: InputMaybe; + temposHasEventConnection_ALL?: InputMaybe; + temposHasEventConnection_NONE?: InputMaybe; + temposHasEventConnection_SINGLE?: InputMaybe; + temposHasEventConnection_SOME?: InputMaybe; + /** Return QcCompletes where all of the related Tempos match this filter */ + temposHasEvent_ALL?: InputMaybe; + /** Return QcCompletes where none of the related Tempos match this filter */ + temposHasEvent_NONE?: InputMaybe; + /** Return QcCompletes where one of the related Tempos match this filter */ + temposHasEvent_SINGLE?: InputMaybe; + /** Return QcCompletes where some of the related Tempos match this filter */ + temposHasEvent_SOME?: InputMaybe; +}; + +export type QcCompletesConnection = { + __typename?: "QcCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + export type Query = { __typename?: "Query"; + bamCompletes: Array; + bamCompletesAggregate: BamCompleteAggregateSelection; + bamCompletesConnection: BamCompletesConnection; + cohortCompletes: Array; + cohortCompletesAggregate: CohortCompleteAggregateSelection; + cohortCompletesConnection: CohortCompletesConnection; + cohorts: Array; + cohortsAggregate: CohortAggregateSelection; + cohortsConnection: CohortsConnection; + mafCompletes: Array; + mafCompletesAggregate: MafCompleteAggregateSelection; + mafCompletesConnection: MafCompletesConnection; patientAliases: Array; patientAliasesAggregate: PatientAliasAggregateSelection; patientAliasesConnection: PatientAliasesConnection; @@ -1662,6 +3432,9 @@ export type Query = { projects: Array; projectsAggregate: ProjectAggregateSelection; projectsConnection: ProjectsConnection; + qcCompletes: Array; + qcCompletesAggregate: QcCompleteAggregateSelection; + qcCompletesConnection: QcCompletesConnection; requestMetadata: Array; requestMetadataAggregate: RequestMetadataAggregateSelection; requestMetadataConnection: RequestMetadataConnection; @@ -1680,6 +3453,73 @@ export type Query = { statuses: Array; statusesAggregate: StatusAggregateSelection; statusesConnection: StatusesConnection; + tempos: Array; + temposAggregate: TempoAggregateSelection; + temposConnection: TemposConnection; +}; + +export type QueryBamCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryBamCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryBamCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + +export type QueryCohortCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryCohortCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryCohortCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + +export type QueryCohortsArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryCohortsAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryCohortsConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + +export type QueryMafCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryMafCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryMafCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; }; export type QueryPatientAliasesArgs = { @@ -1734,6 +3574,22 @@ export type QueryProjectsConnectionArgs = { where?: InputMaybe; }; +export type QueryQcCompletesArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryQcCompletesAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryQcCompletesConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>>; + where?: InputMaybe; +}; + export type QueryRequestMetadataArgs = { options?: InputMaybe; where?: InputMaybe; @@ -1830,6 +3686,21 @@ export type QueryStatusesConnectionArgs = { where?: InputMaybe; }; +export type QueryTemposArgs = { + options?: InputMaybe; + where?: InputMaybe; +}; + +export type QueryTemposAggregateArgs = { + where?: InputMaybe; +}; + +export type QueryTemposConnectionArgs = { + after?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; +}; + export type Request = { __typename?: "Request"; bicAnalysis: Scalars["Boolean"]; @@ -3634,10 +5505,16 @@ export type RequestsConnection = { export type Sample = { __typename?: "Sample"; + cohortsHasCohortSample: Array; + cohortsHasCohortSampleAggregate?: Maybe; + cohortsHasCohortSampleConnection: SampleCohortsHasCohortSampleConnection; datasource: Scalars["String"]; hasMetadataSampleMetadata: Array; hasMetadataSampleMetadataAggregate?: Maybe; hasMetadataSampleMetadataConnection: SampleHasMetadataSampleMetadataConnection; + hasTempoTempos: Array; + hasTempoTemposAggregate?: Maybe; + hasTempoTemposConnection: SampleHasTempoTemposConnection; patientsHasSample: Array; patientsHasSampleAggregate?: Maybe; patientsHasSampleConnection: SamplePatientsHasSampleConnection; @@ -3653,6 +5530,25 @@ export type Sample = { smileSampleId: Scalars["String"]; }; +export type SampleCohortsHasCohortSampleArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + export type SampleHasMetadataSampleMetadataArgs = { directed?: InputMaybe; options?: InputMaybe; @@ -3672,6 +5568,24 @@ export type SampleHasMetadataSampleMetadataConnectionArgs = { where?: InputMaybe; }; +export type SampleHasTempoTemposArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + where?: InputMaybe; +}; + export type SamplePatientsHasSampleArgs = { directed?: InputMaybe; options?: InputMaybe; @@ -4044,10 +5958,126 @@ export type SampleAliasesConnection = { totalCount: Scalars["Int"]; }; +export type SampleCohortCohortsHasCohortSampleAggregationSelection = { + __typename?: "SampleCohortCohortsHasCohortSampleAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type SampleCohortCohortsHasCohortSampleNodeAggregateSelection = { + __typename?: "SampleCohortCohortsHasCohortSampleNodeAggregateSelection"; + cohortId: StringAggregateSelectionNonNullable; +}; + +export type SampleCohortsHasCohortSampleAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnection = { + __typename?: "SampleCohortsHasCohortSampleConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type SampleCohortsHasCohortSampleConnectionSort = { + node?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleCreateFieldInput = { + node: CohortCreateInput; +}; + +export type SampleCohortsHasCohortSampleDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type SampleCohortsHasCohortSampleNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe>; + cohortId_AVERAGE_EQUAL?: InputMaybe; + cohortId_AVERAGE_GT?: InputMaybe; + cohortId_AVERAGE_GTE?: InputMaybe; + cohortId_AVERAGE_LT?: InputMaybe; + cohortId_AVERAGE_LTE?: InputMaybe; + cohortId_EQUAL?: InputMaybe; + cohortId_GT?: InputMaybe; + cohortId_GTE?: InputMaybe; + cohortId_LONGEST_EQUAL?: InputMaybe; + cohortId_LONGEST_GT?: InputMaybe; + cohortId_LONGEST_GTE?: InputMaybe; + cohortId_LONGEST_LT?: InputMaybe; + cohortId_LONGEST_LTE?: InputMaybe; + cohortId_LT?: InputMaybe; + cohortId_LTE?: InputMaybe; + cohortId_SHORTEST_EQUAL?: InputMaybe; + cohortId_SHORTEST_GT?: InputMaybe; + cohortId_SHORTEST_GTE?: InputMaybe; + cohortId_SHORTEST_LT?: InputMaybe; + cohortId_SHORTEST_LTE?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleRelationship = { + __typename?: "SampleCohortsHasCohortSampleRelationship"; + cursor: Scalars["String"]; + node: Cohort; +}; + +export type SampleCohortsHasCohortSampleUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type SampleCohortsHasCohortSampleUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + export type SampleConnectInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -4064,8 +6094,10 @@ export type SampleConnectWhere = { }; export type SampleCreateInput = { + cohortsHasCohortSample?: InputMaybe; datasource: Scalars["String"]; hasMetadataSampleMetadata?: InputMaybe; + hasTempoTempos?: InputMaybe; patientsHasSample?: InputMaybe; requestsHasSample?: InputMaybe; revisable: Scalars["Boolean"]; @@ -4076,9 +6108,13 @@ export type SampleCreateInput = { }; export type SampleDeleteInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -4091,9 +6127,13 @@ export type SampleDeleteInput = { }; export type SampleDisconnectInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -4714,6 +6754,73 @@ export type SampleHasMetadataSampleMetadataUpdateFieldInput = { where?: InputMaybe; }; +export type SampleHasTempoTemposAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; +}; + +export type SampleHasTempoTemposConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposConnection = { + __typename?: "SampleHasTempoTemposConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type SampleHasTempoTemposConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type SampleHasTempoTemposCreateFieldInput = { + node: TempoCreateInput; +}; + +export type SampleHasTempoTemposDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type SampleHasTempoTemposFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type SampleHasTempoTemposRelationship = { + __typename?: "SampleHasTempoTemposRelationship"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type SampleHasTempoTemposUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type SampleHasTempoTemposUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + export type SampleMetadata = { __typename?: "SampleMetadata"; additionalProperties: Scalars["String"]; @@ -5685,9 +7792,13 @@ export type SamplePatientsHasSampleUpdateFieldInput = { }; export type SampleRelationInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -6363,11 +8474,20 @@ export type SampleSort = { smileSampleId?: InputMaybe; }; +export type SampleTempoHasTempoTemposAggregationSelection = { + __typename?: "SampleTempoHasTempoTemposAggregationSelection"; + count: Scalars["Int"]; +}; + export type SampleUpdateInput = { + cohortsHasCohortSample?: InputMaybe< + Array + >; datasource?: InputMaybe; hasMetadataSampleMetadata?: InputMaybe< Array >; + hasTempoTempos?: InputMaybe>; patientsHasSample?: InputMaybe< Array >; @@ -6386,6 +8506,19 @@ export type SampleUpdateInput = { export type SampleWhere = { AND?: InputMaybe>; OR?: InputMaybe>; + cohortsHasCohortSampleAggregate?: InputMaybe; + cohortsHasCohortSampleConnection_ALL?: InputMaybe; + cohortsHasCohortSampleConnection_NONE?: InputMaybe; + cohortsHasCohortSampleConnection_SINGLE?: InputMaybe; + cohortsHasCohortSampleConnection_SOME?: InputMaybe; + /** Return Samples where all of the related Cohorts match this filter */ + cohortsHasCohortSample_ALL?: InputMaybe; + /** Return Samples where none of the related Cohorts match this filter */ + cohortsHasCohortSample_NONE?: InputMaybe; + /** Return Samples where one of the related Cohorts match this filter */ + cohortsHasCohortSample_SINGLE?: InputMaybe; + /** Return Samples where some of the related Cohorts match this filter */ + cohortsHasCohortSample_SOME?: InputMaybe; datasource?: InputMaybe; datasource_CONTAINS?: InputMaybe; datasource_ENDS_WITH?: InputMaybe; @@ -6409,6 +8542,19 @@ export type SampleWhere = { hasMetadataSampleMetadata_SINGLE?: InputMaybe; /** Return Samples where some of the related SampleMetadata match this filter */ hasMetadataSampleMetadata_SOME?: InputMaybe; + hasTempoTemposAggregate?: InputMaybe; + hasTempoTemposConnection_ALL?: InputMaybe; + hasTempoTemposConnection_NONE?: InputMaybe; + hasTempoTemposConnection_SINGLE?: InputMaybe; + hasTempoTemposConnection_SOME?: InputMaybe; + /** Return Samples where all of the related Tempos match this filter */ + hasTempoTempos_ALL?: InputMaybe; + /** Return Samples where none of the related Tempos match this filter */ + hasTempoTempos_NONE?: InputMaybe; + /** Return Samples where one of the related Tempos match this filter */ + hasTempoTempos_SINGLE?: InputMaybe; + /** Return Samples where some of the related Tempos match this filter */ + hasTempoTempos_SOME?: InputMaybe; patientsHasSampleAggregate?: InputMaybe; patientsHasSampleConnection_ALL?: InputMaybe; patientsHasSampleConnection_NONE?: InputMaybe; @@ -7190,303 +9336,1190 @@ export type StatusSampleMetadataHasStatusNodeAggregationWhereInput = { sampleClass_SHORTEST_GTE?: InputMaybe; sampleClass_SHORTEST_LT?: InputMaybe; sampleClass_SHORTEST_LTE?: InputMaybe; - sampleName_AVERAGE_EQUAL?: InputMaybe; - sampleName_AVERAGE_GT?: InputMaybe; - sampleName_AVERAGE_GTE?: InputMaybe; - sampleName_AVERAGE_LT?: InputMaybe; - sampleName_AVERAGE_LTE?: InputMaybe; - sampleName_EQUAL?: InputMaybe; - sampleName_GT?: InputMaybe; - sampleName_GTE?: InputMaybe; - sampleName_LONGEST_EQUAL?: InputMaybe; - sampleName_LONGEST_GT?: InputMaybe; - sampleName_LONGEST_GTE?: InputMaybe; - sampleName_LONGEST_LT?: InputMaybe; - sampleName_LONGEST_LTE?: InputMaybe; - sampleName_LT?: InputMaybe; - sampleName_LTE?: InputMaybe; - sampleName_SHORTEST_EQUAL?: InputMaybe; - sampleName_SHORTEST_GT?: InputMaybe; - sampleName_SHORTEST_GTE?: InputMaybe; - sampleName_SHORTEST_LT?: InputMaybe; - sampleName_SHORTEST_LTE?: InputMaybe; - sampleOrigin_AVERAGE_EQUAL?: InputMaybe; - sampleOrigin_AVERAGE_GT?: InputMaybe; - sampleOrigin_AVERAGE_GTE?: InputMaybe; - sampleOrigin_AVERAGE_LT?: InputMaybe; - sampleOrigin_AVERAGE_LTE?: InputMaybe; - sampleOrigin_EQUAL?: InputMaybe; - sampleOrigin_GT?: InputMaybe; - sampleOrigin_GTE?: InputMaybe; - sampleOrigin_LONGEST_EQUAL?: InputMaybe; - sampleOrigin_LONGEST_GT?: InputMaybe; - sampleOrigin_LONGEST_GTE?: InputMaybe; - sampleOrigin_LONGEST_LT?: InputMaybe; - sampleOrigin_LONGEST_LTE?: InputMaybe; - sampleOrigin_LT?: InputMaybe; - sampleOrigin_LTE?: InputMaybe; - sampleOrigin_SHORTEST_EQUAL?: InputMaybe; - sampleOrigin_SHORTEST_GT?: InputMaybe; - sampleOrigin_SHORTEST_GTE?: InputMaybe; - sampleOrigin_SHORTEST_LT?: InputMaybe; - sampleOrigin_SHORTEST_LTE?: InputMaybe; - sampleType_AVERAGE_EQUAL?: InputMaybe; - sampleType_AVERAGE_GT?: InputMaybe; - sampleType_AVERAGE_GTE?: InputMaybe; - sampleType_AVERAGE_LT?: InputMaybe; - sampleType_AVERAGE_LTE?: InputMaybe; - sampleType_EQUAL?: InputMaybe; - sampleType_GT?: InputMaybe; - sampleType_GTE?: InputMaybe; - sampleType_LONGEST_EQUAL?: InputMaybe; - sampleType_LONGEST_GT?: InputMaybe; - sampleType_LONGEST_GTE?: InputMaybe; - sampleType_LONGEST_LT?: InputMaybe; - sampleType_LONGEST_LTE?: InputMaybe; - sampleType_LT?: InputMaybe; - sampleType_LTE?: InputMaybe; - sampleType_SHORTEST_EQUAL?: InputMaybe; - sampleType_SHORTEST_GT?: InputMaybe; - sampleType_SHORTEST_GTE?: InputMaybe; - sampleType_SHORTEST_LT?: InputMaybe; - sampleType_SHORTEST_LTE?: InputMaybe; - sex_AVERAGE_EQUAL?: InputMaybe; - sex_AVERAGE_GT?: InputMaybe; - sex_AVERAGE_GTE?: InputMaybe; - sex_AVERAGE_LT?: InputMaybe; - sex_AVERAGE_LTE?: InputMaybe; - sex_EQUAL?: InputMaybe; - sex_GT?: InputMaybe; - sex_GTE?: InputMaybe; - sex_LONGEST_EQUAL?: InputMaybe; - sex_LONGEST_GT?: InputMaybe; - sex_LONGEST_GTE?: InputMaybe; - sex_LONGEST_LT?: InputMaybe; - sex_LONGEST_LTE?: InputMaybe; - sex_LT?: InputMaybe; - sex_LTE?: InputMaybe; - sex_SHORTEST_EQUAL?: InputMaybe; - sex_SHORTEST_GT?: InputMaybe; - sex_SHORTEST_GTE?: InputMaybe; - sex_SHORTEST_LT?: InputMaybe; - sex_SHORTEST_LTE?: InputMaybe; - species_AVERAGE_EQUAL?: InputMaybe; - species_AVERAGE_GT?: InputMaybe; - species_AVERAGE_GTE?: InputMaybe; - species_AVERAGE_LT?: InputMaybe; - species_AVERAGE_LTE?: InputMaybe; - species_EQUAL?: InputMaybe; - species_GT?: InputMaybe; - species_GTE?: InputMaybe; - species_LONGEST_EQUAL?: InputMaybe; - species_LONGEST_GT?: InputMaybe; - species_LONGEST_GTE?: InputMaybe; - species_LONGEST_LT?: InputMaybe; - species_LONGEST_LTE?: InputMaybe; - species_LT?: InputMaybe; - species_LTE?: InputMaybe; - species_SHORTEST_EQUAL?: InputMaybe; - species_SHORTEST_GT?: InputMaybe; - species_SHORTEST_GTE?: InputMaybe; - species_SHORTEST_LT?: InputMaybe; - species_SHORTEST_LTE?: InputMaybe; - tissueLocation_AVERAGE_EQUAL?: InputMaybe; - tissueLocation_AVERAGE_GT?: InputMaybe; - tissueLocation_AVERAGE_GTE?: InputMaybe; - tissueLocation_AVERAGE_LT?: InputMaybe; - tissueLocation_AVERAGE_LTE?: InputMaybe; - tissueLocation_EQUAL?: InputMaybe; - tissueLocation_GT?: InputMaybe; - tissueLocation_GTE?: InputMaybe; - tissueLocation_LONGEST_EQUAL?: InputMaybe; - tissueLocation_LONGEST_GT?: InputMaybe; - tissueLocation_LONGEST_GTE?: InputMaybe; - tissueLocation_LONGEST_LT?: InputMaybe; - tissueLocation_LONGEST_LTE?: InputMaybe; - tissueLocation_LT?: InputMaybe; - tissueLocation_LTE?: InputMaybe; - tissueLocation_SHORTEST_EQUAL?: InputMaybe; - tissueLocation_SHORTEST_GT?: InputMaybe; - tissueLocation_SHORTEST_GTE?: InputMaybe; - tissueLocation_SHORTEST_LT?: InputMaybe; - tissueLocation_SHORTEST_LTE?: InputMaybe; - tubeId_AVERAGE_EQUAL?: InputMaybe; - tubeId_AVERAGE_GT?: InputMaybe; - tubeId_AVERAGE_GTE?: InputMaybe; - tubeId_AVERAGE_LT?: InputMaybe; - tubeId_AVERAGE_LTE?: InputMaybe; - tubeId_EQUAL?: InputMaybe; - tubeId_GT?: InputMaybe; - tubeId_GTE?: InputMaybe; - tubeId_LONGEST_EQUAL?: InputMaybe; - tubeId_LONGEST_GT?: InputMaybe; - tubeId_LONGEST_GTE?: InputMaybe; - tubeId_LONGEST_LT?: InputMaybe; - tubeId_LONGEST_LTE?: InputMaybe; - tubeId_LT?: InputMaybe; - tubeId_LTE?: InputMaybe; - tubeId_SHORTEST_EQUAL?: InputMaybe; - tubeId_SHORTEST_GT?: InputMaybe; - tubeId_SHORTEST_GTE?: InputMaybe; - tubeId_SHORTEST_LT?: InputMaybe; - tubeId_SHORTEST_LTE?: InputMaybe; - tumorOrNormal_AVERAGE_EQUAL?: InputMaybe; - tumorOrNormal_AVERAGE_GT?: InputMaybe; - tumorOrNormal_AVERAGE_GTE?: InputMaybe; - tumorOrNormal_AVERAGE_LT?: InputMaybe; - tumorOrNormal_AVERAGE_LTE?: InputMaybe; - tumorOrNormal_EQUAL?: InputMaybe; - tumorOrNormal_GT?: InputMaybe; - tumorOrNormal_GTE?: InputMaybe; - tumorOrNormal_LONGEST_EQUAL?: InputMaybe; - tumorOrNormal_LONGEST_GT?: InputMaybe; - tumorOrNormal_LONGEST_GTE?: InputMaybe; - tumorOrNormal_LONGEST_LT?: InputMaybe; - tumorOrNormal_LONGEST_LTE?: InputMaybe; - tumorOrNormal_LT?: InputMaybe; - tumorOrNormal_LTE?: InputMaybe; - tumorOrNormal_SHORTEST_EQUAL?: InputMaybe; - tumorOrNormal_SHORTEST_GT?: InputMaybe; - tumorOrNormal_SHORTEST_GTE?: InputMaybe; - tumorOrNormal_SHORTEST_LT?: InputMaybe; - tumorOrNormal_SHORTEST_LTE?: InputMaybe; -}; - -export type StatusSampleMetadataHasStatusRelationship = { - __typename?: "StatusSampleMetadataHasStatusRelationship"; - cursor: Scalars["String"]; - node: SampleMetadata; -}; - -export type StatusSampleMetadataHasStatusUpdateConnectionInput = { - node?: InputMaybe; -}; - -export type StatusSampleMetadataHasStatusUpdateFieldInput = { - connect?: InputMaybe>; - create?: InputMaybe>; - delete?: InputMaybe>; - disconnect?: InputMaybe< - Array - >; - update?: InputMaybe; - where?: InputMaybe; + sampleName_AVERAGE_EQUAL?: InputMaybe; + sampleName_AVERAGE_GT?: InputMaybe; + sampleName_AVERAGE_GTE?: InputMaybe; + sampleName_AVERAGE_LT?: InputMaybe; + sampleName_AVERAGE_LTE?: InputMaybe; + sampleName_EQUAL?: InputMaybe; + sampleName_GT?: InputMaybe; + sampleName_GTE?: InputMaybe; + sampleName_LONGEST_EQUAL?: InputMaybe; + sampleName_LONGEST_GT?: InputMaybe; + sampleName_LONGEST_GTE?: InputMaybe; + sampleName_LONGEST_LT?: InputMaybe; + sampleName_LONGEST_LTE?: InputMaybe; + sampleName_LT?: InputMaybe; + sampleName_LTE?: InputMaybe; + sampleName_SHORTEST_EQUAL?: InputMaybe; + sampleName_SHORTEST_GT?: InputMaybe; + sampleName_SHORTEST_GTE?: InputMaybe; + sampleName_SHORTEST_LT?: InputMaybe; + sampleName_SHORTEST_LTE?: InputMaybe; + sampleOrigin_AVERAGE_EQUAL?: InputMaybe; + sampleOrigin_AVERAGE_GT?: InputMaybe; + sampleOrigin_AVERAGE_GTE?: InputMaybe; + sampleOrigin_AVERAGE_LT?: InputMaybe; + sampleOrigin_AVERAGE_LTE?: InputMaybe; + sampleOrigin_EQUAL?: InputMaybe; + sampleOrigin_GT?: InputMaybe; + sampleOrigin_GTE?: InputMaybe; + sampleOrigin_LONGEST_EQUAL?: InputMaybe; + sampleOrigin_LONGEST_GT?: InputMaybe; + sampleOrigin_LONGEST_GTE?: InputMaybe; + sampleOrigin_LONGEST_LT?: InputMaybe; + sampleOrigin_LONGEST_LTE?: InputMaybe; + sampleOrigin_LT?: InputMaybe; + sampleOrigin_LTE?: InputMaybe; + sampleOrigin_SHORTEST_EQUAL?: InputMaybe; + sampleOrigin_SHORTEST_GT?: InputMaybe; + sampleOrigin_SHORTEST_GTE?: InputMaybe; + sampleOrigin_SHORTEST_LT?: InputMaybe; + sampleOrigin_SHORTEST_LTE?: InputMaybe; + sampleType_AVERAGE_EQUAL?: InputMaybe; + sampleType_AVERAGE_GT?: InputMaybe; + sampleType_AVERAGE_GTE?: InputMaybe; + sampleType_AVERAGE_LT?: InputMaybe; + sampleType_AVERAGE_LTE?: InputMaybe; + sampleType_EQUAL?: InputMaybe; + sampleType_GT?: InputMaybe; + sampleType_GTE?: InputMaybe; + sampleType_LONGEST_EQUAL?: InputMaybe; + sampleType_LONGEST_GT?: InputMaybe; + sampleType_LONGEST_GTE?: InputMaybe; + sampleType_LONGEST_LT?: InputMaybe; + sampleType_LONGEST_LTE?: InputMaybe; + sampleType_LT?: InputMaybe; + sampleType_LTE?: InputMaybe; + sampleType_SHORTEST_EQUAL?: InputMaybe; + sampleType_SHORTEST_GT?: InputMaybe; + sampleType_SHORTEST_GTE?: InputMaybe; + sampleType_SHORTEST_LT?: InputMaybe; + sampleType_SHORTEST_LTE?: InputMaybe; + sex_AVERAGE_EQUAL?: InputMaybe; + sex_AVERAGE_GT?: InputMaybe; + sex_AVERAGE_GTE?: InputMaybe; + sex_AVERAGE_LT?: InputMaybe; + sex_AVERAGE_LTE?: InputMaybe; + sex_EQUAL?: InputMaybe; + sex_GT?: InputMaybe; + sex_GTE?: InputMaybe; + sex_LONGEST_EQUAL?: InputMaybe; + sex_LONGEST_GT?: InputMaybe; + sex_LONGEST_GTE?: InputMaybe; + sex_LONGEST_LT?: InputMaybe; + sex_LONGEST_LTE?: InputMaybe; + sex_LT?: InputMaybe; + sex_LTE?: InputMaybe; + sex_SHORTEST_EQUAL?: InputMaybe; + sex_SHORTEST_GT?: InputMaybe; + sex_SHORTEST_GTE?: InputMaybe; + sex_SHORTEST_LT?: InputMaybe; + sex_SHORTEST_LTE?: InputMaybe; + species_AVERAGE_EQUAL?: InputMaybe; + species_AVERAGE_GT?: InputMaybe; + species_AVERAGE_GTE?: InputMaybe; + species_AVERAGE_LT?: InputMaybe; + species_AVERAGE_LTE?: InputMaybe; + species_EQUAL?: InputMaybe; + species_GT?: InputMaybe; + species_GTE?: InputMaybe; + species_LONGEST_EQUAL?: InputMaybe; + species_LONGEST_GT?: InputMaybe; + species_LONGEST_GTE?: InputMaybe; + species_LONGEST_LT?: InputMaybe; + species_LONGEST_LTE?: InputMaybe; + species_LT?: InputMaybe; + species_LTE?: InputMaybe; + species_SHORTEST_EQUAL?: InputMaybe; + species_SHORTEST_GT?: InputMaybe; + species_SHORTEST_GTE?: InputMaybe; + species_SHORTEST_LT?: InputMaybe; + species_SHORTEST_LTE?: InputMaybe; + tissueLocation_AVERAGE_EQUAL?: InputMaybe; + tissueLocation_AVERAGE_GT?: InputMaybe; + tissueLocation_AVERAGE_GTE?: InputMaybe; + tissueLocation_AVERAGE_LT?: InputMaybe; + tissueLocation_AVERAGE_LTE?: InputMaybe; + tissueLocation_EQUAL?: InputMaybe; + tissueLocation_GT?: InputMaybe; + tissueLocation_GTE?: InputMaybe; + tissueLocation_LONGEST_EQUAL?: InputMaybe; + tissueLocation_LONGEST_GT?: InputMaybe; + tissueLocation_LONGEST_GTE?: InputMaybe; + tissueLocation_LONGEST_LT?: InputMaybe; + tissueLocation_LONGEST_LTE?: InputMaybe; + tissueLocation_LT?: InputMaybe; + tissueLocation_LTE?: InputMaybe; + tissueLocation_SHORTEST_EQUAL?: InputMaybe; + tissueLocation_SHORTEST_GT?: InputMaybe; + tissueLocation_SHORTEST_GTE?: InputMaybe; + tissueLocation_SHORTEST_LT?: InputMaybe; + tissueLocation_SHORTEST_LTE?: InputMaybe; + tubeId_AVERAGE_EQUAL?: InputMaybe; + tubeId_AVERAGE_GT?: InputMaybe; + tubeId_AVERAGE_GTE?: InputMaybe; + tubeId_AVERAGE_LT?: InputMaybe; + tubeId_AVERAGE_LTE?: InputMaybe; + tubeId_EQUAL?: InputMaybe; + tubeId_GT?: InputMaybe; + tubeId_GTE?: InputMaybe; + tubeId_LONGEST_EQUAL?: InputMaybe; + tubeId_LONGEST_GT?: InputMaybe; + tubeId_LONGEST_GTE?: InputMaybe; + tubeId_LONGEST_LT?: InputMaybe; + tubeId_LONGEST_LTE?: InputMaybe; + tubeId_LT?: InputMaybe; + tubeId_LTE?: InputMaybe; + tubeId_SHORTEST_EQUAL?: InputMaybe; + tubeId_SHORTEST_GT?: InputMaybe; + tubeId_SHORTEST_GTE?: InputMaybe; + tubeId_SHORTEST_LT?: InputMaybe; + tubeId_SHORTEST_LTE?: InputMaybe; + tumorOrNormal_AVERAGE_EQUAL?: InputMaybe; + tumorOrNormal_AVERAGE_GT?: InputMaybe; + tumorOrNormal_AVERAGE_GTE?: InputMaybe; + tumorOrNormal_AVERAGE_LT?: InputMaybe; + tumorOrNormal_AVERAGE_LTE?: InputMaybe; + tumorOrNormal_EQUAL?: InputMaybe; + tumorOrNormal_GT?: InputMaybe; + tumorOrNormal_GTE?: InputMaybe; + tumorOrNormal_LONGEST_EQUAL?: InputMaybe; + tumorOrNormal_LONGEST_GT?: InputMaybe; + tumorOrNormal_LONGEST_GTE?: InputMaybe; + tumorOrNormal_LONGEST_LT?: InputMaybe; + tumorOrNormal_LONGEST_LTE?: InputMaybe; + tumorOrNormal_LT?: InputMaybe; + tumorOrNormal_LTE?: InputMaybe; + tumorOrNormal_SHORTEST_EQUAL?: InputMaybe; + tumorOrNormal_SHORTEST_GT?: InputMaybe; + tumorOrNormal_SHORTEST_GTE?: InputMaybe; + tumorOrNormal_SHORTEST_LT?: InputMaybe; + tumorOrNormal_SHORTEST_LTE?: InputMaybe; +}; + +export type StatusSampleMetadataHasStatusRelationship = { + __typename?: "StatusSampleMetadataHasStatusRelationship"; + cursor: Scalars["String"]; + node: SampleMetadata; +}; + +export type StatusSampleMetadataHasStatusUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type StatusSampleMetadataHasStatusUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type StatusSampleMetadataSampleMetadataHasStatusAggregationSelection = { + __typename?: "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection = + { + __typename?: "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection"; + additionalProperties: StringAggregateSelectionNonNullable; + baitSet: StringAggregateSelectionNullable; + cfDNA2dBarcode: StringAggregateSelectionNullable; + cmoInfoIgoId: StringAggregateSelectionNullable; + cmoPatientId: StringAggregateSelectionNullable; + cmoSampleIdFields: StringAggregateSelectionNonNullable; + cmoSampleName: StringAggregateSelectionNullable; + collectionYear: StringAggregateSelectionNonNullable; + genePanel: StringAggregateSelectionNonNullable; + igoRequestId: StringAggregateSelectionNullable; + importDate: StringAggregateSelectionNonNullable; + investigatorSampleId: StringAggregateSelectionNullable; + libraries: StringAggregateSelectionNonNullable; + oncotreeCode: StringAggregateSelectionNullable; + preservation: StringAggregateSelectionNullable; + primaryId: StringAggregateSelectionNonNullable; + qcReports: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + sampleName: StringAggregateSelectionNullable; + sampleOrigin: StringAggregateSelectionNullable; + sampleType: StringAggregateSelectionNonNullable; + sex: StringAggregateSelectionNonNullable; + species: StringAggregateSelectionNonNullable; + tissueLocation: StringAggregateSelectionNullable; + tubeId: StringAggregateSelectionNullable; + tumorOrNormal: StringAggregateSelectionNonNullable; + }; + +/** Fields to sort Statuses by. The order in which sorts are applied is not guaranteed when specifying many fields in one StatusSort object. */ +export type StatusSort = { + validationReport?: InputMaybe; + validationStatus?: InputMaybe; +}; + +export type StatusUpdateInput = { + requestMetadataHasStatus?: InputMaybe< + Array + >; + sampleMetadataHasStatus?: InputMaybe< + Array + >; + validationReport?: InputMaybe; + validationStatus?: InputMaybe; +}; + +export type StatusWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + requestMetadataHasStatusAggregate?: InputMaybe; + requestMetadataHasStatusConnection_ALL?: InputMaybe; + requestMetadataHasStatusConnection_NONE?: InputMaybe; + requestMetadataHasStatusConnection_SINGLE?: InputMaybe; + requestMetadataHasStatusConnection_SOME?: InputMaybe; + /** Return Statuses where all of the related RequestMetadata match this filter */ + requestMetadataHasStatus_ALL?: InputMaybe; + /** Return Statuses where none of the related RequestMetadata match this filter */ + requestMetadataHasStatus_NONE?: InputMaybe; + /** Return Statuses where one of the related RequestMetadata match this filter */ + requestMetadataHasStatus_SINGLE?: InputMaybe; + /** Return Statuses where some of the related RequestMetadata match this filter */ + requestMetadataHasStatus_SOME?: InputMaybe; + sampleMetadataHasStatusAggregate?: InputMaybe; + sampleMetadataHasStatusConnection_ALL?: InputMaybe; + sampleMetadataHasStatusConnection_NONE?: InputMaybe; + sampleMetadataHasStatusConnection_SINGLE?: InputMaybe; + sampleMetadataHasStatusConnection_SOME?: InputMaybe; + /** Return Statuses where all of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_ALL?: InputMaybe; + /** Return Statuses where none of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_NONE?: InputMaybe; + /** Return Statuses where one of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_SINGLE?: InputMaybe; + /** Return Statuses where some of the related SampleMetadata match this filter */ + sampleMetadataHasStatus_SOME?: InputMaybe; + validationReport?: InputMaybe; + validationReport_CONTAINS?: InputMaybe; + validationReport_ENDS_WITH?: InputMaybe; + validationReport_IN?: InputMaybe>; + validationReport_NOT?: InputMaybe; + validationReport_NOT_CONTAINS?: InputMaybe; + validationReport_NOT_ENDS_WITH?: InputMaybe; + validationReport_NOT_IN?: InputMaybe>; + validationReport_NOT_STARTS_WITH?: InputMaybe; + validationReport_STARTS_WITH?: InputMaybe; + validationStatus?: InputMaybe; + validationStatus_NOT?: InputMaybe; +}; + +export type StatusesConnection = { + __typename?: "StatusesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type StringAggregateSelectionNonNullable = { + __typename?: "StringAggregateSelectionNonNullable"; + longest: Scalars["String"]; + shortest: Scalars["String"]; +}; + +export type StringAggregateSelectionNullable = { + __typename?: "StringAggregateSelectionNullable"; + longest?: Maybe; + shortest?: Maybe; +}; + +export type Tempo = { + __typename?: "Tempo"; + hasEventBamCompletes: Array; + hasEventBamCompletesAggregate?: Maybe; + hasEventBamCompletesConnection: TempoHasEventBamCompletesConnection; + hasEventMafCompletes: Array; + hasEventMafCompletesAggregate?: Maybe; + hasEventMafCompletesConnection: TempoHasEventMafCompletesConnection; + hasEventQcCompletes: Array; + hasEventQcCompletesAggregate?: Maybe; + hasEventQcCompletesConnection: TempoHasEventQcCompletesConnection; + samplesHasTempo: Array; + samplesHasTempoAggregate?: Maybe; + samplesHasTempoConnection: TempoSamplesHasTempoConnection; +}; + +export type TempoHasEventBamCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoAggregateSelection = { + __typename?: "TempoAggregateSelection"; + count: Scalars["Int"]; +}; + +export type TempoBamCompleteHasEventBamCompletesAggregationSelection = { + __typename?: "TempoBamCompleteHasEventBamCompletesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type TempoBamCompleteHasEventBamCompletesNodeAggregateSelection = { + __typename?: "TempoBamCompleteHasEventBamCompletesNodeAggregateSelection"; + date: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; + +export type TempoConnectInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoConnectWhere = { + node: TempoWhere; +}; + +export type TempoCreateInput = { + hasEventBamCompletes?: InputMaybe; + hasEventMafCompletes?: InputMaybe; + hasEventQcCompletes?: InputMaybe; + samplesHasTempo?: InputMaybe; +}; + +export type TempoDeleteInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoDisconnectInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoEdge = { + __typename?: "TempoEdge"; + cursor: Scalars["String"]; + node: Tempo; +}; + +export type TempoHasEventBamCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnection = { + __typename?: "TempoHasEventBamCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoHasEventBamCompletesConnectionSort = { + node?: InputMaybe; +}; + +export type TempoHasEventBamCompletesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoHasEventBamCompletesCreateFieldInput = { + node: BamCompleteCreateInput; +}; + +export type TempoHasEventBamCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventBamCompletesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoHasEventBamCompletesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; +}; + +export type TempoHasEventBamCompletesRelationship = { + __typename?: "TempoHasEventBamCompletesRelationship"; + cursor: Scalars["String"]; + node: BamComplete; +}; + +export type TempoHasEventBamCompletesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type TempoHasEventBamCompletesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnection = { + __typename?: "TempoHasEventMafCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoHasEventMafCompletesConnectionSort = { + node?: InputMaybe; +}; + +export type TempoHasEventMafCompletesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoHasEventMafCompletesCreateFieldInput = { + node: MafCompleteCreateInput; +}; + +export type TempoHasEventMafCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventMafCompletesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoHasEventMafCompletesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + normalPrimaryId_AVERAGE_EQUAL?: InputMaybe; + normalPrimaryId_AVERAGE_GT?: InputMaybe; + normalPrimaryId_AVERAGE_GTE?: InputMaybe; + normalPrimaryId_AVERAGE_LT?: InputMaybe; + normalPrimaryId_AVERAGE_LTE?: InputMaybe; + normalPrimaryId_EQUAL?: InputMaybe; + normalPrimaryId_GT?: InputMaybe; + normalPrimaryId_GTE?: InputMaybe; + normalPrimaryId_LONGEST_EQUAL?: InputMaybe; + normalPrimaryId_LONGEST_GT?: InputMaybe; + normalPrimaryId_LONGEST_GTE?: InputMaybe; + normalPrimaryId_LONGEST_LT?: InputMaybe; + normalPrimaryId_LONGEST_LTE?: InputMaybe; + normalPrimaryId_LT?: InputMaybe; + normalPrimaryId_LTE?: InputMaybe; + normalPrimaryId_SHORTEST_EQUAL?: InputMaybe; + normalPrimaryId_SHORTEST_GT?: InputMaybe; + normalPrimaryId_SHORTEST_GTE?: InputMaybe; + normalPrimaryId_SHORTEST_LT?: InputMaybe; + normalPrimaryId_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; +}; + +export type TempoHasEventMafCompletesRelationship = { + __typename?: "TempoHasEventMafCompletesRelationship"; + cursor: Scalars["String"]; + node: MafComplete; +}; + +export type TempoHasEventMafCompletesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type TempoHasEventMafCompletesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnection = { + __typename?: "TempoHasEventQcCompletesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoHasEventQcCompletesConnectionSort = { + node?: InputMaybe; +}; + +export type TempoHasEventQcCompletesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoHasEventQcCompletesCreateFieldInput = { + node: QcCompleteCreateInput; +}; + +export type TempoHasEventQcCompletesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoHasEventQcCompletesFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoHasEventQcCompletesNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + date_AVERAGE_EQUAL?: InputMaybe; + date_AVERAGE_GT?: InputMaybe; + date_AVERAGE_GTE?: InputMaybe; + date_AVERAGE_LT?: InputMaybe; + date_AVERAGE_LTE?: InputMaybe; + date_EQUAL?: InputMaybe; + date_GT?: InputMaybe; + date_GTE?: InputMaybe; + date_LONGEST_EQUAL?: InputMaybe; + date_LONGEST_GT?: InputMaybe; + date_LONGEST_GTE?: InputMaybe; + date_LONGEST_LT?: InputMaybe; + date_LONGEST_LTE?: InputMaybe; + date_LT?: InputMaybe; + date_LTE?: InputMaybe; + date_SHORTEST_EQUAL?: InputMaybe; + date_SHORTEST_GT?: InputMaybe; + date_SHORTEST_GTE?: InputMaybe; + date_SHORTEST_LT?: InputMaybe; + date_SHORTEST_LTE?: InputMaybe; + reason_AVERAGE_EQUAL?: InputMaybe; + reason_AVERAGE_GT?: InputMaybe; + reason_AVERAGE_GTE?: InputMaybe; + reason_AVERAGE_LT?: InputMaybe; + reason_AVERAGE_LTE?: InputMaybe; + reason_EQUAL?: InputMaybe; + reason_GT?: InputMaybe; + reason_GTE?: InputMaybe; + reason_LONGEST_EQUAL?: InputMaybe; + reason_LONGEST_GT?: InputMaybe; + reason_LONGEST_GTE?: InputMaybe; + reason_LONGEST_LT?: InputMaybe; + reason_LONGEST_LTE?: InputMaybe; + reason_LT?: InputMaybe; + reason_LTE?: InputMaybe; + reason_SHORTEST_EQUAL?: InputMaybe; + reason_SHORTEST_GT?: InputMaybe; + reason_SHORTEST_GTE?: InputMaybe; + reason_SHORTEST_LT?: InputMaybe; + reason_SHORTEST_LTE?: InputMaybe; + result_AVERAGE_EQUAL?: InputMaybe; + result_AVERAGE_GT?: InputMaybe; + result_AVERAGE_GTE?: InputMaybe; + result_AVERAGE_LT?: InputMaybe; + result_AVERAGE_LTE?: InputMaybe; + result_EQUAL?: InputMaybe; + result_GT?: InputMaybe; + result_GTE?: InputMaybe; + result_LONGEST_EQUAL?: InputMaybe; + result_LONGEST_GT?: InputMaybe; + result_LONGEST_GTE?: InputMaybe; + result_LONGEST_LT?: InputMaybe; + result_LONGEST_LTE?: InputMaybe; + result_LT?: InputMaybe; + result_LTE?: InputMaybe; + result_SHORTEST_EQUAL?: InputMaybe; + result_SHORTEST_GT?: InputMaybe; + result_SHORTEST_GTE?: InputMaybe; + result_SHORTEST_LT?: InputMaybe; + result_SHORTEST_LTE?: InputMaybe; + status_AVERAGE_EQUAL?: InputMaybe; + status_AVERAGE_GT?: InputMaybe; + status_AVERAGE_GTE?: InputMaybe; + status_AVERAGE_LT?: InputMaybe; + status_AVERAGE_LTE?: InputMaybe; + status_EQUAL?: InputMaybe; + status_GT?: InputMaybe; + status_GTE?: InputMaybe; + status_LONGEST_EQUAL?: InputMaybe; + status_LONGEST_GT?: InputMaybe; + status_LONGEST_GTE?: InputMaybe; + status_LONGEST_LT?: InputMaybe; + status_LONGEST_LTE?: InputMaybe; + status_LT?: InputMaybe; + status_LTE?: InputMaybe; + status_SHORTEST_EQUAL?: InputMaybe; + status_SHORTEST_GT?: InputMaybe; + status_SHORTEST_GTE?: InputMaybe; + status_SHORTEST_LT?: InputMaybe; + status_SHORTEST_LTE?: InputMaybe; +}; + +export type TempoHasEventQcCompletesRelationship = { + __typename?: "TempoHasEventQcCompletesRelationship"; + cursor: Scalars["String"]; + node: QcComplete; +}; + +export type TempoHasEventQcCompletesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type TempoHasEventQcCompletesUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoMafCompleteHasEventMafCompletesAggregationSelection = { + __typename?: "TempoMafCompleteHasEventMafCompletesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type TempoMafCompleteHasEventMafCompletesNodeAggregateSelection = { + __typename?: "TempoMafCompleteHasEventMafCompletesNodeAggregateSelection"; + date: StringAggregateSelectionNonNullable; + normalPrimaryId: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; + +export type TempoOptions = { + limit?: InputMaybe; + offset?: InputMaybe; +}; + +export type TempoQcCompleteHasEventQcCompletesAggregationSelection = { + __typename?: "TempoQcCompleteHasEventQcCompletesAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type TempoQcCompleteHasEventQcCompletesNodeAggregateSelection = { + __typename?: "TempoQcCompleteHasEventQcCompletesNodeAggregateSelection"; + date: StringAggregateSelectionNonNullable; + reason: StringAggregateSelectionNonNullable; + result: StringAggregateSelectionNonNullable; + status: StringAggregateSelectionNonNullable; +}; + +export type TempoRelationInput = { + hasEventBamCompletes?: InputMaybe< + Array + >; + hasEventMafCompletes?: InputMaybe< + Array + >; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoSampleSamplesHasTempoAggregationSelection = { + __typename?: "TempoSampleSamplesHasTempoAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type TempoSampleSamplesHasTempoNodeAggregateSelection = { + __typename?: "TempoSampleSamplesHasTempoNodeAggregateSelection"; + datasource: StringAggregateSelectionNonNullable; + sampleCategory: StringAggregateSelectionNonNullable; + sampleClass: StringAggregateSelectionNonNullable; + smileSampleId: StringAggregateSelectionNonNullable; +}; + +export type TempoSamplesHasTempoAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnection = { + __typename?: "TempoSamplesHasTempoConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type TempoSamplesHasTempoConnectionSort = { + node?: InputMaybe; +}; + +export type TempoSamplesHasTempoConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type TempoSamplesHasTempoCreateFieldInput = { + node: SampleCreateInput; +}; + +export type TempoSamplesHasTempoDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type TempoSamplesHasTempoFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; +}; + +export type TempoSamplesHasTempoNodeAggregationWhereInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + datasource_AVERAGE_EQUAL?: InputMaybe; + datasource_AVERAGE_GT?: InputMaybe; + datasource_AVERAGE_GTE?: InputMaybe; + datasource_AVERAGE_LT?: InputMaybe; + datasource_AVERAGE_LTE?: InputMaybe; + datasource_EQUAL?: InputMaybe; + datasource_GT?: InputMaybe; + datasource_GTE?: InputMaybe; + datasource_LONGEST_EQUAL?: InputMaybe; + datasource_LONGEST_GT?: InputMaybe; + datasource_LONGEST_GTE?: InputMaybe; + datasource_LONGEST_LT?: InputMaybe; + datasource_LONGEST_LTE?: InputMaybe; + datasource_LT?: InputMaybe; + datasource_LTE?: InputMaybe; + datasource_SHORTEST_EQUAL?: InputMaybe; + datasource_SHORTEST_GT?: InputMaybe; + datasource_SHORTEST_GTE?: InputMaybe; + datasource_SHORTEST_LT?: InputMaybe; + datasource_SHORTEST_LTE?: InputMaybe; + sampleCategory_AVERAGE_EQUAL?: InputMaybe; + sampleCategory_AVERAGE_GT?: InputMaybe; + sampleCategory_AVERAGE_GTE?: InputMaybe; + sampleCategory_AVERAGE_LT?: InputMaybe; + sampleCategory_AVERAGE_LTE?: InputMaybe; + sampleCategory_EQUAL?: InputMaybe; + sampleCategory_GT?: InputMaybe; + sampleCategory_GTE?: InputMaybe; + sampleCategory_LONGEST_EQUAL?: InputMaybe; + sampleCategory_LONGEST_GT?: InputMaybe; + sampleCategory_LONGEST_GTE?: InputMaybe; + sampleCategory_LONGEST_LT?: InputMaybe; + sampleCategory_LONGEST_LTE?: InputMaybe; + sampleCategory_LT?: InputMaybe; + sampleCategory_LTE?: InputMaybe; + sampleCategory_SHORTEST_EQUAL?: InputMaybe; + sampleCategory_SHORTEST_GT?: InputMaybe; + sampleCategory_SHORTEST_GTE?: InputMaybe; + sampleCategory_SHORTEST_LT?: InputMaybe; + sampleCategory_SHORTEST_LTE?: InputMaybe; + sampleClass_AVERAGE_EQUAL?: InputMaybe; + sampleClass_AVERAGE_GT?: InputMaybe; + sampleClass_AVERAGE_GTE?: InputMaybe; + sampleClass_AVERAGE_LT?: InputMaybe; + sampleClass_AVERAGE_LTE?: InputMaybe; + sampleClass_EQUAL?: InputMaybe; + sampleClass_GT?: InputMaybe; + sampleClass_GTE?: InputMaybe; + sampleClass_LONGEST_EQUAL?: InputMaybe; + sampleClass_LONGEST_GT?: InputMaybe; + sampleClass_LONGEST_GTE?: InputMaybe; + sampleClass_LONGEST_LT?: InputMaybe; + sampleClass_LONGEST_LTE?: InputMaybe; + sampleClass_LT?: InputMaybe; + sampleClass_LTE?: InputMaybe; + sampleClass_SHORTEST_EQUAL?: InputMaybe; + sampleClass_SHORTEST_GT?: InputMaybe; + sampleClass_SHORTEST_GTE?: InputMaybe; + sampleClass_SHORTEST_LT?: InputMaybe; + sampleClass_SHORTEST_LTE?: InputMaybe; + smileSampleId_AVERAGE_EQUAL?: InputMaybe; + smileSampleId_AVERAGE_GT?: InputMaybe; + smileSampleId_AVERAGE_GTE?: InputMaybe; + smileSampleId_AVERAGE_LT?: InputMaybe; + smileSampleId_AVERAGE_LTE?: InputMaybe; + smileSampleId_EQUAL?: InputMaybe; + smileSampleId_GT?: InputMaybe; + smileSampleId_GTE?: InputMaybe; + smileSampleId_LONGEST_EQUAL?: InputMaybe; + smileSampleId_LONGEST_GT?: InputMaybe; + smileSampleId_LONGEST_GTE?: InputMaybe; + smileSampleId_LONGEST_LT?: InputMaybe; + smileSampleId_LONGEST_LTE?: InputMaybe; + smileSampleId_LT?: InputMaybe; + smileSampleId_LTE?: InputMaybe; + smileSampleId_SHORTEST_EQUAL?: InputMaybe; + smileSampleId_SHORTEST_GT?: InputMaybe; + smileSampleId_SHORTEST_GTE?: InputMaybe; + smileSampleId_SHORTEST_LT?: InputMaybe; + smileSampleId_SHORTEST_LTE?: InputMaybe; }; -export type StatusSampleMetadataSampleMetadataHasStatusAggregationSelection = { - __typename?: "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection"; - count: Scalars["Int"]; - node?: Maybe; +export type TempoSamplesHasTempoRelationship = { + __typename?: "TempoSamplesHasTempoRelationship"; + cursor: Scalars["String"]; + node: Sample; }; -export type StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection = - { - __typename?: "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection"; - additionalProperties: StringAggregateSelectionNonNullable; - baitSet: StringAggregateSelectionNullable; - cfDNA2dBarcode: StringAggregateSelectionNullable; - cmoInfoIgoId: StringAggregateSelectionNullable; - cmoPatientId: StringAggregateSelectionNullable; - cmoSampleIdFields: StringAggregateSelectionNonNullable; - cmoSampleName: StringAggregateSelectionNullable; - collectionYear: StringAggregateSelectionNonNullable; - genePanel: StringAggregateSelectionNonNullable; - igoRequestId: StringAggregateSelectionNullable; - importDate: StringAggregateSelectionNonNullable; - investigatorSampleId: StringAggregateSelectionNullable; - libraries: StringAggregateSelectionNonNullable; - oncotreeCode: StringAggregateSelectionNullable; - preservation: StringAggregateSelectionNullable; - primaryId: StringAggregateSelectionNonNullable; - qcReports: StringAggregateSelectionNonNullable; - sampleClass: StringAggregateSelectionNonNullable; - sampleName: StringAggregateSelectionNullable; - sampleOrigin: StringAggregateSelectionNullable; - sampleType: StringAggregateSelectionNonNullable; - sex: StringAggregateSelectionNonNullable; - species: StringAggregateSelectionNonNullable; - tissueLocation: StringAggregateSelectionNullable; - tubeId: StringAggregateSelectionNullable; - tumorOrNormal: StringAggregateSelectionNonNullable; - }; +export type TempoSamplesHasTempoUpdateConnectionInput = { + node?: InputMaybe; +}; -/** Fields to sort Statuses by. The order in which sorts are applied is not guaranteed when specifying many fields in one StatusSort object. */ -export type StatusSort = { - validationReport?: InputMaybe; - validationStatus?: InputMaybe; +export type TempoSamplesHasTempoUpdateFieldInput = { + connect?: InputMaybe>; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe>; + update?: InputMaybe; + where?: InputMaybe; }; -export type StatusUpdateInput = { - requestMetadataHasStatus?: InputMaybe< - Array +export type TempoUpdateInput = { + hasEventBamCompletes?: InputMaybe< + Array >; - sampleMetadataHasStatus?: InputMaybe< - Array + hasEventMafCompletes?: InputMaybe< + Array >; - validationReport?: InputMaybe; - validationStatus?: InputMaybe; -}; - -export type StatusWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - requestMetadataHasStatusAggregate?: InputMaybe; - requestMetadataHasStatusConnection_ALL?: InputMaybe; - requestMetadataHasStatusConnection_NONE?: InputMaybe; - requestMetadataHasStatusConnection_SINGLE?: InputMaybe; - requestMetadataHasStatusConnection_SOME?: InputMaybe; - /** Return Statuses where all of the related RequestMetadata match this filter */ - requestMetadataHasStatus_ALL?: InputMaybe; - /** Return Statuses where none of the related RequestMetadata match this filter */ - requestMetadataHasStatus_NONE?: InputMaybe; - /** Return Statuses where one of the related RequestMetadata match this filter */ - requestMetadataHasStatus_SINGLE?: InputMaybe; - /** Return Statuses where some of the related RequestMetadata match this filter */ - requestMetadataHasStatus_SOME?: InputMaybe; - sampleMetadataHasStatusAggregate?: InputMaybe; - sampleMetadataHasStatusConnection_ALL?: InputMaybe; - sampleMetadataHasStatusConnection_NONE?: InputMaybe; - sampleMetadataHasStatusConnection_SINGLE?: InputMaybe; - sampleMetadataHasStatusConnection_SOME?: InputMaybe; - /** Return Statuses where all of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_ALL?: InputMaybe; - /** Return Statuses where none of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_NONE?: InputMaybe; - /** Return Statuses where one of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_SINGLE?: InputMaybe; - /** Return Statuses where some of the related SampleMetadata match this filter */ - sampleMetadataHasStatus_SOME?: InputMaybe; - validationReport?: InputMaybe; - validationReport_CONTAINS?: InputMaybe; - validationReport_ENDS_WITH?: InputMaybe; - validationReport_IN?: InputMaybe>; - validationReport_NOT?: InputMaybe; - validationReport_NOT_CONTAINS?: InputMaybe; - validationReport_NOT_ENDS_WITH?: InputMaybe; - validationReport_NOT_IN?: InputMaybe>; - validationReport_NOT_STARTS_WITH?: InputMaybe; - validationReport_STARTS_WITH?: InputMaybe; - validationStatus?: InputMaybe; - validationStatus_NOT?: InputMaybe; -}; - -export type StatusesConnection = { - __typename?: "StatusesConnection"; - edges: Array; + hasEventQcCompletes?: InputMaybe< + Array + >; + samplesHasTempo?: InputMaybe>; +}; + +export type TempoWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + hasEventBamCompletesAggregate?: InputMaybe; + hasEventBamCompletesConnection_ALL?: InputMaybe; + hasEventBamCompletesConnection_NONE?: InputMaybe; + hasEventBamCompletesConnection_SINGLE?: InputMaybe; + hasEventBamCompletesConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related BamCompletes match this filter */ + hasEventBamCompletes_ALL?: InputMaybe; + /** Return Tempos where none of the related BamCompletes match this filter */ + hasEventBamCompletes_NONE?: InputMaybe; + /** Return Tempos where one of the related BamCompletes match this filter */ + hasEventBamCompletes_SINGLE?: InputMaybe; + /** Return Tempos where some of the related BamCompletes match this filter */ + hasEventBamCompletes_SOME?: InputMaybe; + hasEventMafCompletesAggregate?: InputMaybe; + hasEventMafCompletesConnection_ALL?: InputMaybe; + hasEventMafCompletesConnection_NONE?: InputMaybe; + hasEventMafCompletesConnection_SINGLE?: InputMaybe; + hasEventMafCompletesConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related MafCompletes match this filter */ + hasEventMafCompletes_ALL?: InputMaybe; + /** Return Tempos where none of the related MafCompletes match this filter */ + hasEventMafCompletes_NONE?: InputMaybe; + /** Return Tempos where one of the related MafCompletes match this filter */ + hasEventMafCompletes_SINGLE?: InputMaybe; + /** Return Tempos where some of the related MafCompletes match this filter */ + hasEventMafCompletes_SOME?: InputMaybe; + hasEventQcCompletesAggregate?: InputMaybe; + hasEventQcCompletesConnection_ALL?: InputMaybe; + hasEventQcCompletesConnection_NONE?: InputMaybe; + hasEventQcCompletesConnection_SINGLE?: InputMaybe; + hasEventQcCompletesConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related QcCompletes match this filter */ + hasEventQcCompletes_ALL?: InputMaybe; + /** Return Tempos where none of the related QcCompletes match this filter */ + hasEventQcCompletes_NONE?: InputMaybe; + /** Return Tempos where one of the related QcCompletes match this filter */ + hasEventQcCompletes_SINGLE?: InputMaybe; + /** Return Tempos where some of the related QcCompletes match this filter */ + hasEventQcCompletes_SOME?: InputMaybe; + samplesHasTempoAggregate?: InputMaybe; + samplesHasTempoConnection_ALL?: InputMaybe; + samplesHasTempoConnection_NONE?: InputMaybe; + samplesHasTempoConnection_SINGLE?: InputMaybe; + samplesHasTempoConnection_SOME?: InputMaybe; + /** Return Tempos where all of the related Samples match this filter */ + samplesHasTempo_ALL?: InputMaybe; + /** Return Tempos where none of the related Samples match this filter */ + samplesHasTempo_NONE?: InputMaybe; + /** Return Tempos where one of the related Samples match this filter */ + samplesHasTempo_SINGLE?: InputMaybe; + /** Return Tempos where some of the related Samples match this filter */ + samplesHasTempo_SOME?: InputMaybe; +}; + +export type TemposConnection = { + __typename?: "TemposConnection"; + edges: Array; pageInfo: PageInfo; totalCount: Scalars["Int"]; }; -export type StringAggregateSelectionNonNullable = { - __typename?: "StringAggregateSelectionNonNullable"; - longest: Scalars["String"]; - shortest: Scalars["String"]; +export type UpdateBamCompletesMutationResponse = { + __typename?: "UpdateBamCompletesMutationResponse"; + bamCompletes: Array; + info: UpdateInfo; }; -export type StringAggregateSelectionNullable = { - __typename?: "StringAggregateSelectionNullable"; - longest?: Maybe; - shortest?: Maybe; +export type UpdateCohortCompletesMutationResponse = { + __typename?: "UpdateCohortCompletesMutationResponse"; + cohortCompletes: Array; + info: UpdateInfo; +}; + +export type UpdateCohortsMutationResponse = { + __typename?: "UpdateCohortsMutationResponse"; + cohorts: Array; + info: UpdateInfo; }; export type UpdateInfo = { @@ -7498,6 +10531,12 @@ export type UpdateInfo = { relationshipsDeleted: Scalars["Int"]; }; +export type UpdateMafCompletesMutationResponse = { + __typename?: "UpdateMafCompletesMutationResponse"; + info: UpdateInfo; + mafCompletes: Array; +}; + export type UpdatePatientAliasesMutationResponse = { __typename?: "UpdatePatientAliasesMutationResponse"; info: UpdateInfo; @@ -7516,6 +10555,12 @@ export type UpdateProjectsMutationResponse = { projects: Array; }; +export type UpdateQcCompletesMutationResponse = { + __typename?: "UpdateQcCompletesMutationResponse"; + info: UpdateInfo; + qcCompletes: Array; +}; + export type UpdateRequestMetadataMutationResponse = { __typename?: "UpdateRequestMetadataMutationResponse"; info: UpdateInfo; @@ -7552,6 +10597,12 @@ export type UpdateStatusesMutationResponse = { statuses: Array; }; +export type UpdateTemposMutationResponse = { + __typename?: "UpdateTemposMutationResponse"; + info: UpdateInfo; + tempos: Array; +}; + export type RequestsListQueryVariables = Exact<{ options?: InputMaybe; where?: InputMaybe; @@ -7630,96 +10681,13 @@ export type PatientsListQuery = { }>; }; -export type RequestWithSamplesQueryVariables = Exact<{ - options?: InputMaybe; - where?: InputMaybe; - hasSampleSamplesWhere2?: InputMaybe; - hasMetadataSampleMetadataWhere2?: InputMaybe; - hasSampleSamplesConnectionWhere2?: InputMaybe; - hasMetadataSampleMetadataOptions2?: InputMaybe; -}>; - -export type RequestWithSamplesQuery = { - __typename?: "Query"; - requests: Array<{ - __typename?: "Request"; - igoRequestId: string; - igoProjectId: string; - genePanel: string; - dataAnalystName: string; - dataAnalystEmail: string; - dataAccessEmails: string; - bicAnalysis: boolean; - investigatorEmail: string; - investigatorName: string; - isCmoRequest: boolean; - labHeadEmail: string; - labHeadName: string; - libraryType?: string | null; - otherContactEmails: string; - piEmail: string; - projectManagerName: string; - qcAccessEmails: string; - smileRequestId: string; - hasSampleSamples: Array<{ - __typename?: "Sample"; - smileSampleId: string; - sampleCategory: string; - sampleClass: string; - datasource: string; - revisable: boolean; - hasMetadataSampleMetadata: Array<{ - __typename?: "SampleMetadata"; - additionalProperties: string; - baitSet?: string | null; - cfDNA2dBarcode?: string | null; - cmoInfoIgoId?: string | null; - cmoPatientId?: string | null; - cmoSampleIdFields: string; - cmoSampleName?: string | null; - collectionYear: string; - genePanel: string; - igoComplete?: boolean | null; - igoRequestId?: string | null; - importDate: string; - investigatorSampleId?: string | null; - libraries: string; - oncotreeCode?: string | null; - preservation?: string | null; - primaryId: string; - qcReports: string; - sampleClass: string; - sampleName?: string | null; - sampleOrigin?: string | null; - sampleType: string; - sex: string; - species: string; - tissueLocation?: string | null; - tubeId?: string | null; - tumorOrNormal: string; - }>; - patientsHasSample: Array<{ - __typename?: "Patient"; - smilePatientId: string; - patientAliasesIsAlias: Array<{ - __typename?: "PatientAlias"; - namespace: string; - value: string; - }>; - }>; - }>; - hasSampleSamplesConnection: { - __typename?: "RequestHasSampleSamplesConnection"; - totalCount: number; - }; - }>; -}; - export type FindSamplesByInputValueQueryVariables = Exact<{ where?: InputMaybe; first?: InputMaybe; - options?: InputMaybe; - patientAliasesIsAliasWhere2?: InputMaybe; + sampleMetadataOptions?: InputMaybe; + bamCompletesOptions?: InputMaybe; + mafCompletesOptions?: InputMaybe; + qcCompletesOptions?: InputMaybe; }>; export type FindSamplesByInputValueQuery = { @@ -7812,6 +10780,34 @@ export type FindSamplesByInputValueQuery = { }; }>; }; + cohortsHasCohortSampleConnection: { + __typename?: "SampleCohortsHasCohortSampleConnection"; + edges: Array<{ + __typename?: "SampleCohortsHasCohortSampleRelationship"; + node: { __typename?: "Cohort"; cohortId: string }; + }>; + }; + hasTempoTempos: Array<{ + __typename?: "Tempo"; + hasEventBamCompletes: Array<{ + __typename?: "BamComplete"; + date: string; + status: string; + }>; + hasEventMafCompletes: Array<{ + __typename?: "MafComplete"; + date: string; + normalPrimaryId: string; + status: string; + }>; + hasEventQcCompletes: Array<{ + __typename?: "QcComplete"; + date: string; + reason: string; + result: string; + status: string; + }>; + }>; }; }>; }; @@ -7992,6 +10988,36 @@ export type GetPatientIdsTripletsQuery = { } | null> | null; }; +export type CohortsListQueryVariables = Exact<{ + where?: InputMaybe; + options?: InputMaybe; + cohortsConnectionWhere2?: InputMaybe; + hasCohortCompleteCohortCompletesOptions2?: InputMaybe; +}>; + +export type CohortsListQuery = { + __typename?: "Query"; + cohortsConnection: { __typename?: "CohortsConnection"; totalCount: number }; + cohorts: Array<{ + __typename?: "Cohort"; + cohortId: string; + hasCohortCompleteCohortCompletes: Array<{ + __typename?: "CohortComplete"; + type: string; + endUsers?: Array | null; + pmUsers?: Array | null; + projectTitle?: string | null; + projectSubtitle?: string | null; + status: string; + date: string; + }>; + hasCohortSampleSamplesConnection: { + __typename?: "CohortHasCohortSampleSamplesConnection"; + totalCount: number; + }; + }>; +}; + export const RequestPartsFragmentDoc = gql` fragment RequestParts on Request { igoRequestId @@ -8113,61 +11139,20 @@ export type PatientsListQueryResult = Apollo.QueryResult< PatientsListQuery, PatientsListQueryVariables >; -export const RequestWithSamplesDocument = gql` - query RequestWithSamples( - $options: RequestOptions - $where: RequestWhere - $hasSampleSamplesWhere2: SampleWhere - $hasMetadataSampleMetadataWhere2: SampleMetadataWhere - $hasSampleSamplesConnectionWhere2: RequestHasSampleSamplesConnectionWhere - $hasMetadataSampleMetadataOptions2: SampleMetadataOptions - ) { - requests(where: $where, options: $options) { - ...RequestParts - hasSampleSamples(where: $hasSampleSamplesWhere2) { - smileSampleId - sampleCategory - sampleClass - datasource - revisable - hasMetadataSampleMetadata( - where: $hasMetadataSampleMetadataWhere2 - options: $hasMetadataSampleMetadataOptions2 - ) { - ...SampleMetadataParts - } - patientsHasSample { - smilePatientId - patientAliasesIsAlias { - namespace - value - } - } - } - hasSampleSamplesConnection(where: $hasSampleSamplesConnectionWhere2) { - totalCount - } - } - } - ${RequestPartsFragmentDoc} - ${SampleMetadataPartsFragmentDoc} -`; -export type RequestWithSamplesQueryResult = Apollo.QueryResult< - RequestWithSamplesQuery, - RequestWithSamplesQueryVariables ->; export const FindSamplesByInputValueDocument = gql` query FindSamplesByInputValue( $where: SampleWhere $first: Int - $options: SampleMetadataOptions - $patientAliasesIsAliasWhere2: PatientAliasWhere + $sampleMetadataOptions: SampleMetadataOptions + $bamCompletesOptions: BamCompleteOptions + $mafCompletesOptions: MafCompleteOptions + $qcCompletesOptions: QcCompleteOptions ) { samplesConnection(where: $where, first: $first) { edges { node { ...SampleParts - hasMetadataSampleMetadata(options: $options) { + hasMetadataSampleMetadata(options: $sampleMetadataOptions) { ...SampleMetadataParts hasStatusStatuses { validationReport @@ -8185,13 +11170,37 @@ export const FindSamplesByInputValueDocument = gql` edges { node { smilePatientId - patientAliasesIsAlias(where: $patientAliasesIsAliasWhere2) { + patientAliasesIsAlias { namespace value } } } } + cohortsHasCohortSampleConnection { + edges { + node { + cohortId + } + } + } + hasTempoTempos { + hasEventBamCompletes(options: $bamCompletesOptions) { + date + status + } + hasEventMafCompletes(options: $mafCompletesOptions) { + date + normalPrimaryId + status + } + hasEventQcCompletes(options: $qcCompletesOptions) { + date + reason + result + status + } + } } } } @@ -8274,3 +11283,36 @@ export type GetPatientIdsTripletsQueryResult = Apollo.QueryResult< GetPatientIdsTripletsQuery, GetPatientIdsTripletsQueryVariables >; +export const CohortsListDocument = gql` + query CohortsList( + $where: CohortWhere + $options: CohortOptions + $cohortsConnectionWhere2: CohortWhere + $hasCohortCompleteCohortCompletesOptions2: CohortCompleteOptions + ) { + cohortsConnection(where: $cohortsConnectionWhere2) { + totalCount + } + cohorts(where: $where, options: $options) { + cohortId + hasCohortCompleteCohortCompletes( + options: $hasCohortCompleteCohortCompletesOptions2 + ) { + type + endUsers + pmUsers + projectTitle + projectSubtitle + status + date + } + hasCohortSampleSamplesConnection { + totalCount + } + } + } +`; +export type CohortsListQueryResult = Apollo.QueryResult< + CohortsListQuery, + CohortsListQueryVariables +>; diff --git a/graphql-server/src/schemas/oracle.ts b/graphql-server/src/schemas/oracle.ts index 3fc55658..00722bc3 100644 --- a/graphql-server/src/schemas/oracle.ts +++ b/graphql-server/src/schemas/oracle.ts @@ -10,7 +10,7 @@ import { IMiddlewareResolver } from "graphql-middleware/dist/types"; let oracledb: any = null; if (os.arch() !== "arm64") { oracledb = require("oracledb"); - oracledb.initOracleClient(); + oracledb.initOracleClient({ libDir: process.env.LD_LIBRARY_PATH }); oracledb.outFormat = oracledb.OUT_FORMAT_OBJECT; // returns each row as a JS object } diff --git a/graphql.schema.json b/graphql.schema.json index b3c37f0e..60c2c87b 100644 --- a/graphql.schema.json +++ b/graphql.schema.json @@ -8,35 +8,13 @@ }, "subscriptionType": null, "types": [ - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "CreateInfo", + "name": "BamComplete", "description": null, "fields": [ { - "name": "bookmark", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodesCreated", + "name": "date", "description": null, "args": [], "type": { @@ -44,7 +22,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -52,7 +30,7 @@ "deprecationReason": null }, { - "name": "relationshipsCreated", + "name": "status", "description": null, "args": [], "type": { @@ -60,34 +38,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreatePatientAliasesMutationResponse", - "description": null, - "fields": [ - { - "name": "info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", + "name": "String", "ofType": null } }, @@ -95,9 +46,46 @@ "deprecationReason": null }, { - "name": "patientAliases", + "name": "temposHasEvent", "description": null, - "args": [], + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -109,7 +97,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PatientAlias", + "name": "Tempo", "ofType": null } } @@ -117,53 +105,104 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreatePatientsMutationResponse", - "description": null, - "fields": [ + }, { - "name": "info", + "name": "temposHasEventAggregate", "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", - "ofType": null + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } + ], + "type": { + "kind": "OBJECT", + "name": "BamCompleteTempoTemposHasEventAggregationSelection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "patients", + "name": "temposHasEventConnection", "description": null, - "args": [], + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Patient", - "ofType": null - } - } + "kind": "OBJECT", + "name": "BamCompleteTemposHasEventConnection", + "ofType": null } }, "isDeprecated": false, @@ -177,19 +216,19 @@ }, { "kind": "OBJECT", - "name": "CreateProjectsMutationResponse", + "name": "BamCompleteAggregateSelection", "description": null, "fields": [ { - "name": "info", + "name": "count", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -197,42 +236,7 @@ "deprecationReason": null }, { - "name": "projects", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CreateRequestMetadataMutationResponse", - "description": null, - "fields": [ - { - "name": "info", + "name": "date", "description": null, "args": [], "type": { @@ -240,7 +244,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CreateInfo", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -248,24 +252,16 @@ "deprecationReason": null }, { - "name": "requestMetadata", + "name": "status", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadata", - "ofType": null - } - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, "isDeprecated": false, @@ -278,224 +274,195 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CreateRequestsMutationResponse", + "kind": "INPUT_OBJECT", + "name": "BamCompleteConnectInput", "description": null, - "fields": [ - { - "name": "info", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": null, + "inputFields": [ { - "name": "requests", + "name": "temposHasEvent", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Request", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectFieldInput", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CreateSampleAliasesMutationResponse", + "kind": "INPUT_OBJECT", + "name": "BamCompleteConnectWhere", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "info", + "name": "node", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sampleAliases", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAlias", - "ofType": null - } - } - } - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CreateSampleMetadataMutationResponse", + "kind": "INPUT_OBJECT", + "name": "BamCompleteCreateInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "info", + "name": "date", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadata", + "name": "status", "description": null, - "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadata", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventFieldInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CreateSamplesMutationResponse", + "kind": "INPUT_OBJECT", + "name": "BamCompleteDeleteInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "info", + "name": "temposHasEvent", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventDeleteFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "samples", + "name": "temposHasEvent", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventDisconnectFieldInput", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CreateStatusesMutationResponse", + "name": "BamCompleteEdge", "description": null, "fields": [ { - "name": "info", + "name": "cursor", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreateInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -503,24 +470,16 @@ "deprecationReason": null }, { - "name": "statuses", + "name": "node", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } - } + "kind": "OBJECT", + "name": "BamComplete", + "ofType": null } }, "isDeprecated": false, @@ -533,448 +492,346 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "DeleteInfo", + "kind": "INPUT_OBJECT", + "name": "BamCompleteOptions", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "bookmark", + "name": "limit", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "nodesDeleted", + "name": "offset", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "relationshipsDeleted", - "description": null, - "args": [], + "name": "sort", + "description": "Specify one or more BamCompleteSort objects to sort BamCompletes by. The sorts will be applied in the order in which they are arranged in the array.", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteSort", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "kind": "INPUT_OBJECT", + "name": "BamCompleteRelationInput", + "description": null, "fields": null, - "inputFields": null, + "inputFields": [ + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "kind": "INPUT_OBJECT", + "name": "BamCompleteSort", + "description": "Fields to sort BamCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one BamCompleteSort object.", "fields": null, - "inputFields": null, + "inputFields": [ + { + "name": "date", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "Mutation", + "name": "BamCompleteTempoTemposHasEventAggregationSelection", "description": null, "fields": [ { - "name": "createPatientAliases", + "name": "count", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreatePatientAliasesMutationResponse", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "createPatients", + "name": "AND", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreatePatientsMutationResponse", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventAggregateInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createProjects", + "name": "OR", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreateProjectsMutationResponse", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventAggregateInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createRequestMetadata", + "name": "count", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateRequestMetadataMutationResponse", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createRequests", + "name": "count_GT", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateRequestsMutationResponse", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createSampleAliases", + "name": "count_GTE", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateSampleAliasesMutationResponse", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createSampleMetadata", + "name": "count_LT", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CreateSampleMetadataMutationResponse", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createSamples", + "name": "count_LTE", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleCreateInput", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CreateSamplesMutationResponse", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoConnectInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "createStatuses", + "name": "where", "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BamCompleteTemposHasEventConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusCreateInput", - "ofType": null - } - } + "kind": "OBJECT", + "name": "BamCompleteTemposHasEventRelationship", + "ofType": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CreateStatusesMutationResponse", + "name": "PageInfo", "ofType": null } }, @@ -982,245 +839,265 @@ "deprecationReason": null }, { - "name": "deletePatientAliases", + "name": "totalCount", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deletePatients", + "name": "AND", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteProjects", + "name": "OR", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteRequestMetadata", + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", + "kind": "INPUT_OBJECT", + "name": "TempoCreateInput", "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoDeleteInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteRequests", + "name": "where", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteSampleAliases", + "name": "create", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "name": "BamCompleteTemposHasEventCreateFieldInput", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BamCompleteTemposHasEventRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -1228,631 +1105,771 @@ "deprecationReason": null }, { - "name": "deleteSampleMetadata", + "name": "node", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "DeleteInfo", + "name": "Tempo", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "deleteSamples", + "name": "node", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "name": "BamCompleteTemposHasEventConnectFieldInput", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventCreateFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteStatuses", + "name": "delete", "description": null, - "args": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "BamCompleteTemposHasEventDeleteFieldInput", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeleteInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventDisconnectFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatePatientAliases", + "name": "update", "description": null, - "args": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasConnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasRelationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasDisconnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasUpdateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdatePatientAliasesMutationResponse", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventUpdateConnectionInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatePatients", + "name": "where", "description": null, - "args": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientConnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientRelationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientDisconnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientUpdateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdatePatientsMutationResponse", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateProjects", + "name": "status", "description": null, - "args": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectConnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectRelationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectDisconnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateProjectsMutationResponse", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateRequestMetadata", + "name": "temposHasEvent", "description": null, - "args": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataConnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRelationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDisconnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataUpdateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "name": "BamCompleteTemposHasEventUpdateFieldInput", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UpdateRequestMetadataMutationResponse", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateRequests", + "name": "OR", "description": null, - "args": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestConnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestRelationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestDisconnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestUpdateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "name": "BamCompleteWhere", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_IN", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UpdateRequestsMutationResponse", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateSampleAliases", + "name": "date_NOT", "description": null, - "args": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasConnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasRelationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasDeleteInput", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_ALL", + "description": "Return BamCompletes where all of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_NONE", + "description": "Return BamCompletes where none of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_SINGLE", + "description": "Return BamCompletes where one of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_SOME", + "description": "Return BamCompletes where some of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BamCompletesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamCompleteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Cohort", + "description": null, + "fields": [ + { + "name": "cohortId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletes", + "description": null, + "args": [ { - "name": "disconnect", + "name": "directed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasDisconnectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null, + "defaultValue": "true", "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "options", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleAliasUpdateInput", + "name": "CohortCompleteOptions", "ofType": null }, "defaultValue": null, @@ -1864,7 +1881,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "name": "CohortCompleteWhere", "ofType": null }, "defaultValue": null, @@ -1876,48 +1893,69 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UpdateSampleAliasesMutationResponse", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortComplete", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateSampleMetadata", + "name": "hasCohortCompleteCohortCompletesAggregate", "description": null, "args": [ { - "name": "connect", + "name": "directed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataConnectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null, + "defaultValue": "true", "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataRelationInput", + "name": "CohortCompleteWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "CohortCohortCompleteHasCohortCompleteCohortCompletesAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletesConnection", + "description": null, + "args": [ { - "name": "delete", + "name": "after", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataDeleteInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -1925,35 +1963,55 @@ "deprecationReason": null }, { - "name": "disconnect", + "name": "directed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataDisconnectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null, + "defaultValue": "true", "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "first", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataUpdateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -1966,7 +2024,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateSampleMetadataMutationResponse", + "name": "CohortHasCohortCompleteCohortCompletesConnection", "ofType": null } }, @@ -1974,27 +2032,27 @@ "deprecationReason": null }, { - "name": "updateSamples", + "name": "hasCohortSampleSamples", "description": null, "args": [ { - "name": "connect", + "name": "directed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleConnectInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, - "defaultValue": null, + "defaultValue": "true", "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "options", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleRelationInput", + "name": "SampleOptions", "ofType": null }, "defaultValue": null, @@ -2002,23 +2060,85 @@ "deprecationReason": null }, { - "name": "delete", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "disconnect", - "description": null, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamplesAggregate", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleDisconnectInput", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CohortSampleHasCohortSampleSamplesAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamplesConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -2026,11 +2146,308 @@ "deprecationReason": null }, { - "name": "update", + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleUpdateInput", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortHasCohortSampleSamplesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortAggregateSelection", + "description": null, + "fields": [ + { + "name": "cohortId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCohortCompleteHasCohortCompleteCohortCompletesAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CohortCohortCompleteHasCohortCompleteCohortCompletesNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCohortCompleteHasCohortCompleteCohortCompletesNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "analyst", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortComplete", + "description": null, + "fields": [ + { + "name": "analyst", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortComplete", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortOptions", "ofType": null }, "defaultValue": null, @@ -2042,7 +2459,137 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cohort", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortCompleteAggregate", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CohortCompleteCohortCohortsHasCohortCompleteAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortCompleteConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", "ofType": null }, "defaultValue": null, @@ -2055,7 +2602,39 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UpdateSamplesMutationResponse", + "name": "CohortCompleteCohortsHasCohortCompleteConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -2063,958 +2642,24387 @@ "deprecationReason": null }, { - "name": "updateStatuses", + "name": "pmUsers", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCompleteAggregateSelection", + "description": null, + "fields": [ + { + "name": "analyst", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCompleteCohortCohortsHasCohortCompleteAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CohortCompleteCohortCohortsHasCohortCompleteNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCompleteCohortCohortsHasCohortCompleteNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "cohortId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteNodeAggregationWhereInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortSort", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cohort", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteConnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cohortsHasCohortComplete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteConnectWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "analyst", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortComplete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteDeleteInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cohortsHasCohortComplete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cohortsHasCohortComplete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCompleteEdge", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortComplete", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteOptions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more CohortCompleteSort objects to sort CohortCompletes by. The sorts will be applied in the order in which they are arranged in the array.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteRelationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cohortsHasCohortComplete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteSort", + "description": "Fields to sort CohortCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one CohortCompleteSort object.", + "fields": null, + "inputFields": [ + { + "name": "analyst", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "analyst", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortComplete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers_POP", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers_PUSH", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers_POP", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers_PUSH", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortCompleteAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortCompleteConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortCompleteConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortCompleteConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortCompleteConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCohortsHasCohortCompleteConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortComplete_ALL", + "description": "Return CohortCompletes where all of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortComplete_NONE", + "description": "Return CohortCompletes where none of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortComplete_SINGLE", + "description": "Return CohortCompletes where one of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortComplete_SOME", + "description": "Return CohortCompletes where some of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers_INCLUDES", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers_NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endUsers_NOT_INCLUDES", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers_INCLUDES", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers_NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pmUsers_NOT_INCLUDES", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortCompletesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortCompleteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortConnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasCohortCompleteCohortCompletes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortConnectWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cohortId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletes", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortDeleteInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasCohortCompleteCohortCompletes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasCohortCompleteCohortCompletes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortEdge", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cohort", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesNodeAggregationWhereInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteSort", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyst_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectSubtitle_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTitle_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortComplete", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesNodeAggregationWhereInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortHasCohortSampleSamplesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortHasCohortSampleSamplesRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleSort", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortHasCohortSampleSamplesRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortOptions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more CohortSort objects to sort Cohorts by. The sorts will be applied in the order in which they are arranged in the array.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortRelationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasCohortCompleteCohortCompletes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortSampleHasCohortSampleSamplesAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CohortSampleHasCohortSampleSamplesNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortSampleHasCohortSampleSamplesNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "datasource", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortSort", + "description": "Fields to sort Cohorts by. The order in which sorts are applied is not guaranteed when specifying many fields in one CohortSort object.", + "fields": null, + "inputFields": [ + { + "name": "cohortId", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cohortId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletesAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletesConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletesConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletesConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletesConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortCompleteCohortCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletes_ALL", + "description": "Return Cohorts where all of the related CohortCompletes match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletes_NONE", + "description": "Return Cohorts where none of the related CohortCompletes match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletes_SINGLE", + "description": "Return Cohorts where one of the related CohortCompletes match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortCompleteCohortCompletes_SOME", + "description": "Return Cohorts where some of the related CohortCompletes match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamplesAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamplesConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamplesConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamplesConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamplesConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortHasCohortSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples_ALL", + "description": "Return Cohorts where all of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples_NONE", + "description": "Return Cohorts where none of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples_SINGLE", + "description": "Return Cohorts where one of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasCohortSampleSamples_SOME", + "description": "Return Cohorts where some of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CohortsConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateBamCompletesMutationResponse", + "description": null, + "fields": [ + { + "name": "bamCompletes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamComplete", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateCohortCompletesMutationResponse", + "description": null, + "fields": [ + { + "name": "cohortCompletes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortComplete", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateCohortsMutationResponse", + "description": null, + "fields": [ + { + "name": "cohorts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cohort", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateInfo", + "description": null, + "fields": [ + { + "name": "bookmark", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodesCreated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relationshipsCreated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateMafCompletesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mafCompletes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafComplete", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreatePatientAliasesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliases", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAlias", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreatePatientsMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patients", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Patient", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateProjectsMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateQcCompletesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcCompletes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcComplete", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateRequestMetadataMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadata", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadata", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateRequestsMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requests", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateSampleAliasesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleAliases", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAlias", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateSampleMetadataMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleMetadata", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadata", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateSamplesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samples", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateStatusesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statuses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Status", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateTemposMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tempos", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeleteInfo", + "description": null, + "fields": [ + { + "name": "bookmark", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodesDeleted", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relationshipsDeleted", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MafComplete", + "description": null, + "fields": [ + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventAggregate", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MafCompleteTempoTemposHasEventAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafCompleteTemposHasEventConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MafCompleteAggregateSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteConnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteConnectWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "date", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteDeleteInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MafCompleteEdge", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafComplete", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteOptions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more MafCompleteSort objects to sort MafCompletes by. The sorts will be applied in the order in which they are arranged in the array.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteRelationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteSort", + "description": "Fields to sort MafCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one MafCompleteSort object.", + "fields": null, + "inputFields": [ + { + "name": "date", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MafCompleteTempoTemposHasEventAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MafCompleteTemposHasEventConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafCompleteTemposHasEventRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MafCompleteTemposHasEventRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalPrimaryId_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEventConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_ALL", + "description": "Return MafCompletes where all of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_NONE", + "description": "Return MafCompletes where none of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_SINGLE", + "description": "Return MafCompletes where one of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent_SOME", + "description": "Return MafCompletes where some of the related Tempos match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MafCompletesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafCompleteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "createBamCompletes", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateBamCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCohortCompletes", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateCohortCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCohorts", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateCohortsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMafCompletes", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateMafCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createPatientAliases", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreatePatientAliasesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createPatients", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreatePatientsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createProjects", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateProjectsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createQcCompletes", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateQcCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createRequestMetadata", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateRequestMetadataMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createRequests", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateRequestsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createSampleAliases", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateSampleAliasesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createSampleMetadata", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateSampleMetadataMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createSamples", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateSamplesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createStatuses", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateStatusesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createTempos", + "description": null, + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateTemposMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteBamCompletes", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCohortCompletes", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCohorts", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteMafCompletes", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletePatientAliases", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletePatients", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProjects", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteQcCompletes", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteRequestMetadata", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteRequests", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteSampleAliases", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteSampleMetadata", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteSamples", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteStatuses", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteTempos", + "description": null, + "args": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeleteInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateBamCompletes", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateBamCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCohortCompletes", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateCohortCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCohorts", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateCohortsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateMafCompletes", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateMafCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatePatientAliases", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdatePatientAliasesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatePatients", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdatePatientsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProjects", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateProjectsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateQcCompletes", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateQcCompletesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateRequestMetadata", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateRequestMetadataMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateRequests", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateRequestsMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateSampleAliases", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateSampleAliasesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateSampleMetadata", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateSampleMetadataMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateSamples", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateSamplesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateStatuses", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateStatusesMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateTempos", + "description": null, + "args": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoConnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoRelationInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateTemposMutationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "description": "Pagination information (Relay)", + "fields": [ + { + "name": "endCursor", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasNextPage", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasPreviousPage", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startCursor", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Patient", + "description": null, + "fields": [ + { + "name": "hasSampleSamples", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamplesAggregate", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PatientSampleHasSampleSamplesAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamplesConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientHasSampleSamplesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAlias", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAliasAggregate", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PatientPatientAliasPatientAliasesIsAliasAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAliasConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientPatientAliasesIsAliasConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAggregateSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAlias", + "description": null, + "fields": [ + { + "name": "isAliasPatients", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Patient", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatientsAggregate", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PatientAliasPatientIsAliasPatientsAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatientsConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAliasIsAliasPatientsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAliasAggregateSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasConnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isAliasPatients", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasConnectWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isAliasPatients", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasDeleteInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isAliasPatients", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isAliasPatients", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAliasEdge", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAlias", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAliasIsAliasPatientsConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAliasIsAliasPatientsRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientSort", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAliasIsAliasPatientsRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Patient", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasOptions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more PatientAliasSort objects to sort PatientAliases by. The sorts will be applied in the order in which they are arranged in the array.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAliasPatientIsAliasPatientsAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PatientAliasPatientIsAliasPatientsNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAliasPatientIsAliasPatientsNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "smilePatientId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasRelationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isAliasPatients", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasSort", + "description": "Fields to sort PatientAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientAliasSort object.", + "fields": null, + "inputFields": [ + { + "name": "namespace", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isAliasPatients", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatientsAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatientsConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatientsConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatientsConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatientsConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasIsAliasPatientsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatients_ALL", + "description": "Return PatientAliases where all of the related Patients match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatients_NONE", + "description": "Return PatientAliases where none of the related Patients match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatients_SINGLE", + "description": "Return PatientAliases where one of the related Patients match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAliasPatients_SOME", + "description": "Return PatientAliases where some of the related Patients match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientAliasesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAliasEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientConnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientConnectWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasSampleSamples", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientDeleteInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientEdge", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Patient", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesNodeAggregationWhereInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientHasSampleSamplesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientHasSampleSamplesRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleSort", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientHasSampleSamplesRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientIdsTriplet", + "description": null, + "fields": [ + { + "name": "CMO_ID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DMP_ID", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PT_MRN", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientOptions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more PatientSort objects to sort Patients by. The sorts will be applied in the order in which they are arranged in the array.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientPatientAliasPatientAliasesIsAliasAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "namespace", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientPatientAliasesIsAliasConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientPatientAliasesIsAliasRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasSort", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientPatientAliasesIsAliasRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAlias", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientRelationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientSampleHasSampleSamplesAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PatientSampleHasSampleSamplesNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientSampleHasSampleSamplesNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "datasource", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientSort", + "description": "Fields to sort Patients by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientSort object.", + "fields": null, + "inputFields": [ + { + "name": "smilePatientId", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasSampleSamples", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamplesAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamplesConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamplesConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamplesConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamplesConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamples_ALL", + "description": "Return Patients where all of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamples_NONE", + "description": "Return Patients where none of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamples_SINGLE", + "description": "Return Patients where one of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasSampleSamples_SOME", + "description": "Return Patients where some of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAliasAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAliasConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAliasConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAliasConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAliasConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientPatientAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias_ALL", + "description": "Return Patients where all of the related PatientAliases match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias_NONE", + "description": "Return Patients where none of the related PatientAliases match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias_SINGLE", + "description": "Return Patients where one of the related PatientAliases match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientAliasesIsAlias_SOME", + "description": "Return Patients where some of the related PatientAliases match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_NOT_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smilePatientId_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PatientsConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Project", + "description": null, + "fields": [ + { + "name": "hasRequestRequests", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasRequestRequestsAggregate", + "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectRequestHasRequestRequestsAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasRequestRequestsConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectHasRequestRequestsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAggregateSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectConnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasRequestRequests", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectConnectWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasRequestRequests", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectDeleteInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasRequestRequests", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasRequestRequests", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectEdge", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsAggregateInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestConnectInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestConnectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectHasRequestRequestsConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectHasRequestRequestsRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestSort", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestCreateInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_AVERAGE_LTE", "description": null, - "args": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusConnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRelationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disconnect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusDisconnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusUpdateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UpdateStatusesMutationResponse", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": "Pagination information (Relay)", - "fields": [ + }, { - "name": "endCursor", + "name": "otherContactEmails_EQUAL", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasNextPage", + "name": "otherContactEmails_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasPreviousPage", + "name": "otherContactEmails_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "startCursor", + "name": "otherContactEmails_LONGEST_EQUAL", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Patient", - "description": null, - "fields": [ + }, { - "name": "hasSampleSamples", + "name": "otherContactEmails_LONGEST_GT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamplesAggregate", + "name": "otherContactEmails_LONGEST_GTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "PatientSampleHasSampleSamplesAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamplesConnection", + "name": "otherContactEmails_LONGEST_LT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientHasSampleSamplesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAlias", + "name": "otherContactEmails_LONGEST_LTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAlias", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAliasAggregate", + "name": "otherContactEmails_LT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "PatientPatientAliasPatientAliasesIsAliasAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAliasConnection", + "name": "otherContactEmails_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_SHORTEST_GT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientPatientAliasesIsAliasConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId", + "name": "otherContactEmails_SHORTEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "otherContactEmails_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId", + "name": "otherContactEmails_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAlias", - "description": null, - "fields": [ + }, { - "name": "isAliasPatients", + "name": "piEmail_AVERAGE_EQUAL", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Patient", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAliasPatientsAggregate", + "name": "piEmail_AVERAGE_GT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "PatientAliasPatientIsAliasPatientsAggregationSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAliasPatientsConnection", + "name": "piEmail_AVERAGE_GTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAliasIsAliasPatientsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "piEmail_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "piEmail_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAliasAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "piEmail_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "piEmail_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "piEmail_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasPatients", + "name": "piEmail_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "piEmail_LONGEST_GT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasPatients", + "name": "piEmail_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3022,199 +27030,155 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "piEmail_LONGEST_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "piEmail_LONGEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasDeleteInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasPatients", + "name": "piEmail_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasDisconnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasPatients", + "name": "piEmail_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAliasEdge", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "piEmail_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "projectManagerName_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAlias", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "projectManagerName_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "projectManagerName_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "projectManagerName_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3222,11 +27186,11 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "projectManagerName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3234,11 +27198,11 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "projectManagerName_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -3246,7 +27210,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "projectManagerName_GT", "description": null, "type": { "kind": "SCALAR", @@ -3258,7 +27222,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "projectManagerName_GTE", "description": null, "type": { "kind": "SCALAR", @@ -3270,207 +27234,119 @@ "deprecationReason": null }, { - "name": "node", + "name": "projectManagerName_LONGEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "projectManagerName_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "projectManagerName_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientConnectWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAliasIsAliasPatientsConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "projectManagerName_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAliasIsAliasPatientsRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "projectManagerName_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "projectManagerName_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "projectManagerName_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientSort", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "projectManagerName_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "projectManagerName_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "projectManagerName_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3478,61 +27354,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "projectManagerName_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "projectManagerName_SHORTEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "qcAccessEmails_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientDeleteInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3540,34 +27390,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "qcAccessEmails_AVERAGE_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "qcAccessEmails_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientDisconnectInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3575,125 +27414,71 @@ "deprecationReason": null }, { - "name": "where", + "name": "qcAccessEmails_AVERAGE_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "qcAccessEmails_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "qcAccessEmails_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "qcAccessEmails_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "qcAccessEmails_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_EQUAL", + "name": "qcAccessEmails_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3701,11 +27486,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_GT", + "name": "qcAccessEmails_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3713,11 +27498,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_GTE", + "name": "qcAccessEmails_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3725,11 +27510,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_LT", + "name": "qcAccessEmails_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3737,11 +27522,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_LTE", + "name": "qcAccessEmails_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3749,11 +27534,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_EQUAL", + "name": "qcAccessEmails_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -3761,7 +27546,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_GT", + "name": "qcAccessEmails_LTE", "description": null, "type": { "kind": "SCALAR", @@ -3773,7 +27558,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_GTE", + "name": "qcAccessEmails_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -3785,7 +27570,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_EQUAL", + "name": "qcAccessEmails_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -3797,7 +27582,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_GT", + "name": "qcAccessEmails_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -3809,7 +27594,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_GTE", + "name": "qcAccessEmails_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -3821,7 +27606,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_LT", + "name": "qcAccessEmails_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -3833,11 +27618,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_LTE", + "name": "requestJson_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3845,11 +27630,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_LT", + "name": "requestJson_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3857,11 +27642,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_LTE", + "name": "requestJson_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3869,11 +27654,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_EQUAL", + "name": "requestJson_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3881,11 +27666,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_GT", + "name": "requestJson_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -3893,11 +27678,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_GTE", + "name": "requestJson_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -3905,7 +27690,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_LT", + "name": "requestJson_GT", "description": null, "type": { "kind": "SCALAR", @@ -3917,7 +27702,7 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_LTE", + "name": "requestJson_GTE", "description": null, "type": { "kind": "SCALAR", @@ -3927,170 +27712,97 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAliasIsAliasPatientsRelationship", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "requestJson_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "requestJson_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Patient", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "requestJson_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientUpdateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "requestJson_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "requestJson_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "requestJson_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "requestJson_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "requestJson_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsUpdateConnectionInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4098,30 +27810,19 @@ "deprecationReason": null }, { - "name": "where", + "name": "requestJson_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasOptions", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "limit", + "name": "requestJson_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -4133,7 +27834,7 @@ "deprecationReason": null }, { - "name": "offset", + "name": "requestJson_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -4145,139 +27846,71 @@ "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more PatientAliasSort objects to sort PatientAliases by. The sorts will be applied in the order in which they are arranged in the array.", + "name": "requestJson_SHORTEST_LTE", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasSort", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAliasPatientIsAliasPatientsAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "smileRequestId_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "smileRequestId_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "PatientAliasPatientIsAliasPatientsNodeAggregateSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientAliasPatientIsAliasPatientsNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "smilePatientId", + "name": "smileRequestId_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasRelationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasPatients", + "name": "smileRequestId_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasSort", - "description": "Fields to sort PatientAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientAliasSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "namespace", + "name": "smileRequestId_AVERAGE_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -4285,54 +27918,35 @@ "deprecationReason": null }, { - "name": "value", + "name": "smileRequestId_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasPatients", + "name": "smileRequestId_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "smileRequestId_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4340,74 +27954,47 @@ "deprecationReason": null }, { - "name": "value", + "name": "smileRequestId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "smileRequestId_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "smileRequestId_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAliasPatientsAggregate", + "name": "smileRequestId_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4415,11 +28002,11 @@ "deprecationReason": null }, { - "name": "isAliasPatientsConnection_ALL", + "name": "smileRequestId_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4427,11 +28014,11 @@ "deprecationReason": null }, { - "name": "isAliasPatientsConnection_NONE", + "name": "smileRequestId_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4439,11 +28026,11 @@ "deprecationReason": null }, { - "name": "isAliasPatientsConnection_SINGLE", + "name": "smileRequestId_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4451,11 +28038,11 @@ "deprecationReason": null }, { - "name": "isAliasPatientsConnection_SOME", + "name": "smileRequestId_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasIsAliasPatientsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4463,11 +28050,11 @@ "deprecationReason": null }, { - "name": "isAliasPatients_ALL", - "description": "Return PatientAliases where all of the related Patients match this filter", + "name": "smileRequestId_SHORTEST_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4475,11 +28062,11 @@ "deprecationReason": null }, { - "name": "isAliasPatients_NONE", - "description": "Return PatientAliases where none of the related Patients match this filter", + "name": "smileRequestId_SHORTEST_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4487,11 +28074,11 @@ "deprecationReason": null }, { - "name": "isAliasPatients_SINGLE", - "description": "Return PatientAliases where one of the related Patients match this filter", + "name": "smileRequestId_SHORTEST_LT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4499,11 +28086,11 @@ "deprecationReason": null }, { - "name": "isAliasPatients_SOME", - "description": "Return PatientAliases where some of the related Patients match this filter", + "name": "smileRequestId_SHORTEST_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4511,11 +28098,11 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "strand_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -4523,11 +28110,11 @@ "deprecationReason": null }, { - "name": "namespace_CONTAINS", + "name": "strand_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -4535,11 +28122,11 @@ "deprecationReason": null }, { - "name": "namespace_ENDS_WITH", + "name": "strand_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -4547,31 +28134,23 @@ "deprecationReason": null }, { - "name": "namespace_IN", + "name": "strand_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT", + "name": "strand_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -4579,7 +28158,7 @@ "deprecationReason": null }, { - "name": "namespace_NOT_CONTAINS", + "name": "strand_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -4591,11 +28170,11 @@ "deprecationReason": null }, { - "name": "namespace_NOT_ENDS_WITH", + "name": "strand_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4603,31 +28182,23 @@ "deprecationReason": null }, { - "name": "namespace_NOT_IN", + "name": "strand_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT_STARTS_WITH", + "name": "strand_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4635,11 +28206,11 @@ "deprecationReason": null }, { - "name": "namespace_STARTS_WITH", + "name": "strand_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4647,11 +28218,11 @@ "deprecationReason": null }, { - "name": "value", + "name": "strand_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4659,11 +28230,11 @@ "deprecationReason": null }, { - "name": "value_CONTAINS", + "name": "strand_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4671,11 +28242,11 @@ "deprecationReason": null }, { - "name": "value_ENDS_WITH", + "name": "strand_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4683,31 +28254,23 @@ "deprecationReason": null }, { - "name": "value_IN", + "name": "strand_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_NOT", + "name": "strand_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4715,11 +28278,11 @@ "deprecationReason": null }, { - "name": "value_NOT_CONTAINS", + "name": "strand_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4727,11 +28290,11 @@ "deprecationReason": null }, { - "name": "value_NOT_ENDS_WITH", + "name": "strand_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4739,31 +28302,23 @@ "deprecationReason": null }, { - "name": "value_NOT_IN", + "name": "strand_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_NOT_STARTS_WITH", + "name": "strand_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4771,11 +28326,11 @@ "deprecationReason": null }, { - "name": "value_STARTS_WITH", + "name": "strand_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -4789,35 +28344,27 @@ }, { "kind": "OBJECT", - "name": "PatientAliasesConnection", + "name": "ProjectHasRequestRequestsRelationship", "description": null, "fields": [ { - "name": "edges", + "name": "cursor", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAliasEdge", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "node", "description": null, "args": [], "type": { @@ -4825,43 +28372,50 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "Request", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "totalCount", + "name": "node", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestUpdateInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "PatientConnectInput", + "name": "ProjectHasRequestRequestsUpdateFieldInput", "description": null, "fields": null, "inputFields": [ { - "name": "hasSampleSamples", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -4871,7 +28425,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectFieldInput", + "name": "ProjectHasRequestRequestsConnectFieldInput", "ofType": null } } @@ -4881,7 +28435,7 @@ "deprecationReason": null }, { - "name": "patientAliasesIsAlias", + "name": "create", "description": null, "type": { "kind": "LIST", @@ -4891,7 +28445,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectFieldInput", + "name": "ProjectHasRequestRequestsCreateFieldInput", "ofType": null } } @@ -4899,63 +28453,53 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "delete", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsDeleteFieldInput", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasSampleSamples", + "name": "disconnect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesFieldInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAlias", + "name": "update", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasFieldInput", + "name": "ProjectHasRequestRequestsUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -4963,16 +28507,12 @@ "deprecationReason": null }, { - "name": "smilePatientId", + "name": "where", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -4985,33 +28525,37 @@ }, { "kind": "INPUT_OBJECT", - "name": "PatientDeleteInput", + "name": "ProjectOptions", "description": null, "fields": null, "inputFields": [ { - "name": "hasSampleSamples", + "name": "limit", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAlias", + "name": "offset", "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more ProjectSort objects to sort Projects by. The sorts will be applied in the order in which they are arranged in the array.", "type": { "kind": "LIST", "name": null, @@ -5020,7 +28564,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasDeleteFieldInput", + "name": "ProjectSort", "ofType": null } } @@ -5036,32 +28580,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "PatientDisconnectInput", + "name": "ProjectRelationInput", "description": null, "fields": null, "inputFields": [ { - "name": "hasSampleSamples", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesDisconnectFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "patientAliasesIsAlias", + "name": "hasRequestRequests", "description": null, "type": { "kind": "LIST", @@ -5071,7 +28595,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasDisconnectFieldInput", + "name": "ProjectHasRequestRequestsCreateFieldInput", "ofType": null } } @@ -5087,11 +28611,11 @@ }, { "kind": "OBJECT", - "name": "PatientEdge", + "name": "ProjectRequestHasRequestRequestsAggregationSelection", "description": null, "fields": [ { - "name": "cursor", + "name": "count", "description": null, "args": [], "type": { @@ -5099,7 +28623,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -5111,13 +28635,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Patient", - "ofType": null - } + "kind": "OBJECT", + "name": "ProjectRequestHasRequestRequestsNodeAggregateSelection", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -5129,202 +28649,204 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesAggregateInput", + "kind": "OBJECT", + "name": "ProjectRequestHasRequestRequestsNodeAggregateSelection", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "AND", + "name": "dataAccessEmails", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesAggregateInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "dataAnalystEmail", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesAggregateInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "dataAnalystName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count_GT", + "name": "genePanel", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count_GTE", + "name": "igoProjectId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count_LT", + "name": "igoRequestId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count_LTE", + "name": "investigatorName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "labHeadEmail", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesNodeAggregationWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "labHeadName", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleConnectInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "libraryType", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleConnectWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientHasSampleSamplesConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "namespace", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientHasSampleSamplesRelationship", - "ofType": null - } - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "otherContactEmails", "description": null, "args": [], "type": { @@ -5332,7 +28854,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -5340,164 +28862,119 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "piEmail", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionSort", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSort", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "projectManagerName", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "qcAccessEmails", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "requestJson", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node_NOT", + "name": "smileRequestId", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "strand", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleCreateInput", + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesDeleteFieldInput", - "description": null, + "name": "ProjectSort", + "description": "Fields to sort Projects by. The order in which sorts are applied is not guaranteed when specifying many fields in one ProjectSort object.", "fields": null, "inputFields": [ { - "name": "delete", + "name": "igoProjectId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -5505,11 +28982,11 @@ "deprecationReason": null }, { - "name": "where", + "name": "namespace", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -5523,16 +29000,36 @@ }, { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesDisconnectFieldInput", + "name": "ProjectUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "disconnect", + "name": "hasRequestRequests", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDisconnectInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5540,11 +29037,11 @@ "deprecationReason": null }, { - "name": "where", + "name": "namespace", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5558,12 +29055,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesFieldInput", + "name": "ProjectWhere", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -5573,7 +29070,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectFieldInput", + "name": "ProjectWhere", "ofType": null } } @@ -5583,7 +29080,7 @@ "deprecationReason": null }, { - "name": "create", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -5593,7 +29090,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesCreateFieldInput", + "name": "ProjectWhere", "ofType": null } } @@ -5601,64 +29098,37 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "hasRequestRequestsAggregate", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsAggregateInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "hasRequestRequestsConnection_ALL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_AVERAGE_EQUAL", + "name": "hasRequestRequestsConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", "ofType": null }, "defaultValue": null, @@ -5666,11 +29136,11 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GT", + "name": "hasRequestRequestsConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", "ofType": null }, "defaultValue": null, @@ -5678,11 +29148,11 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GTE", + "name": "hasRequestRequestsConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "ProjectHasRequestRequestsConnectionWhere", "ofType": null }, "defaultValue": null, @@ -5690,11 +29160,11 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LT", - "description": null, + "name": "hasRequestRequests_ALL", + "description": "Return Projects where all of the related Requests match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -5702,11 +29172,11 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LTE", - "description": null, + "name": "hasRequestRequests_NONE", + "description": "Return Projects where none of the related Requests match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -5714,11 +29184,11 @@ "deprecationReason": null }, { - "name": "datasource_EQUAL", - "description": null, + "name": "hasRequestRequests_SINGLE", + "description": "Return Projects where one of the related Requests match this filter", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -5726,11 +29196,11 @@ "deprecationReason": null }, { - "name": "datasource_GT", - "description": null, + "name": "hasRequestRequests_SOME", + "description": "Return Projects where some of the related Requests match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -5738,11 +29208,11 @@ "deprecationReason": null }, { - "name": "datasource_GTE", + "name": "igoProjectId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5750,11 +29220,11 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_EQUAL", + "name": "igoProjectId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5762,11 +29232,11 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GT", + "name": "igoProjectId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5774,23 +29244,31 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GTE", + "name": "igoProjectId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_LONGEST_LT", + "name": "igoProjectId_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5798,11 +29276,11 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LTE", + "name": "igoProjectId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5810,11 +29288,11 @@ "deprecationReason": null }, { - "name": "datasource_LT", + "name": "igoProjectId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5822,23 +29300,31 @@ "deprecationReason": null }, { - "name": "datasource_LTE", + "name": "igoProjectId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_SHORTEST_EQUAL", + "name": "igoProjectId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5846,11 +29332,11 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GT", + "name": "igoProjectId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5858,11 +29344,11 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GTE", + "name": "namespace", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5870,11 +29356,11 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LT", + "name": "namespace_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5882,11 +29368,11 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LTE", + "name": "namespace_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5894,23 +29380,31 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_EQUAL", + "name": "namespace_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GT", + "name": "namespace_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5918,11 +29412,11 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GTE", + "name": "namespace_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5930,11 +29424,11 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LT", + "name": "namespace_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5942,19 +29436,27 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LTE", + "name": "namespace_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_EQUAL", + "name": "namespace_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -5966,271 +29468,676 @@ "deprecationReason": null }, { - "name": "sampleCategory_GT", + "name": "namespace_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectsConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QcComplete", + "description": null, + "fields": [ + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_GTE", + "name": "result", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_EQUAL", + "name": "status", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GT", + "name": "temposHasEvent", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GTE", + "name": "temposHasEventAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "QcCompleteTempoTemposHasEventAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LT", + "name": "temposHasEventConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcCompleteTemposHasEventConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QcCompleteAggregateSelection", + "description": null, + "fields": [ { - "name": "sampleCategory_LONGEST_LTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_LT", + "name": "date", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_LTE", + "name": "reason", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_EQUAL", + "name": "result", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GT", + "name": "status", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteConnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleCategory_SHORTEST_GTE", + "name": "temposHasEvent", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleCategory_SHORTEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleCategory_SHORTEST_LTE", + "name": "date", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_EQUAL", + "name": "reason", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GT", + "name": "result", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GTE", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LT", + "name": "temposHasEvent", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventFieldInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleClass_AVERAGE_LTE", + "name": "temposHasEvent", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleClass_EQUAL", + "name": "temposHasEvent", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QcCompleteEdge", + "description": null, + "fields": [ { - "name": "sampleClass_GT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_GTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcComplete", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteOptions", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleClass_LONGEST_EQUAL", + "name": "limit", "description": null, "type": { "kind": "SCALAR", @@ -6242,7 +30149,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GT", + "name": "offset", "description": null, "type": { "kind": "SCALAR", @@ -6254,35 +30161,73 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GTE", - "description": null, + "name": "sort", + "description": "Specify one or more QcCompleteSort objects to sort QcCompletes by. The sorts will be applied in the order in which they are arranged in the array.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteSort", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteRelationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleClass_LONGEST_LT", + "name": "temposHasEvent", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteSort", + "description": "Fields to sort QcCompletes by. The order in which sorts are applied is not guaranteed when specifying many fields in one QcCompleteSort object.", + "fields": null, + "inputFields": [ { - "name": "sampleClass_LONGEST_LTE", + "name": "date", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -6290,11 +30235,11 @@ "deprecationReason": null }, { - "name": "sampleClass_LT", + "name": "reason", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -6302,11 +30247,11 @@ "deprecationReason": null }, { - "name": "sampleClass_LTE", + "name": "result", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -6314,55 +30259,97 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_EQUAL", + "name": "status", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QcCompleteTempoTemposHasEventAggregationSelection", + "description": null, + "fields": [ { - "name": "sampleClass_SHORTEST_GT", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleClass_SHORTEST_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LTE", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -6374,11 +30361,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_EQUAL", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -6386,11 +30373,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GT", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -6398,11 +30385,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GTE", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -6410,107 +30397,184 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_LT", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileSampleId_AVERAGE_LTE", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TempoConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QcCompleteTemposHasEventConnection", + "description": null, + "fields": [ { - "name": "smileSampleId_GT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcCompleteTemposHasEventRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_GTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileSampleId_LONGEST_GT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, @@ -6518,35 +30582,61 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileSampleId_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileSampleId_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoDeleteInput", "ofType": null }, "defaultValue": null, @@ -6554,23 +30644,34 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileSampleId_SHORTEST_GT", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoDisconnectInput", "ofType": null }, "defaultValue": null, @@ -6578,36 +30679,63 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileSampleId_SHORTEST_LT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -6620,7 +30748,7 @@ }, { "kind": "OBJECT", - "name": "PatientHasSampleSamplesRelationship", + "name": "QcCompleteTemposHasEventRelationship", "description": null, "fields": [ { @@ -6648,7 +30776,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Sample", + "name": "Tempo", "ofType": null } }, @@ -6663,7 +30791,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesUpdateConnectionInput", + "name": "QcCompleteTemposHasEventUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ @@ -6672,7 +30800,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleUpdateInput", + "name": "TempoUpdateInput", "ofType": null }, "defaultValue": null, @@ -6686,7 +30814,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesUpdateFieldInput", + "name": "QcCompleteTemposHasEventUpdateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -6701,7 +30829,67 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectFieldInput", + "name": "QcCompleteTemposHasEventConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventDisconnectFieldInput", "ofType": null } } @@ -6711,7 +30899,90 @@ "deprecationReason": null }, { - "name": "create", + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "result", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "temposHasEvent", "description": null, "type": { "kind": "LIST", @@ -6721,7 +30992,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesCreateFieldInput", + "name": "QcCompleteTemposHasEventUpdateFieldInput", "ofType": null } } @@ -6729,9 +31000,20 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "delete", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -6741,7 +31023,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesDeleteFieldInput", + "name": "QcCompleteWhere", "ofType": null } } @@ -6751,7 +31033,7 @@ "deprecationReason": null }, { - "name": "disconnect", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -6761,7 +31043,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesDisconnectFieldInput", + "name": "QcCompleteWhere", "ofType": null } } @@ -6771,11 +31053,11 @@ "deprecationReason": null }, { - "name": "update", + "name": "date", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesUpdateConnectionInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -6783,81 +31065,67 @@ "deprecationReason": null }, { - "name": "where", + "name": "date_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientIdsTriplet", - "description": null, - "fields": [ + }, { - "name": "CMO_ID", + "name": "date_ENDS_WITH", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "DMP_ID", + "name": "date_IN", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "PT_MRN", + "name": "date_NOT", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientOptions", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "limit", + "name": "date_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -6865,11 +31133,11 @@ "deprecationReason": null }, { - "name": "offset", + "name": "date_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -6877,8 +31145,8 @@ "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more PatientSort objects to sort Patients by. The sorts will be applied in the order in which they are arranged in the array.", + "name": "date_NOT_IN", + "description": null, "type": { "kind": "LIST", "name": null, @@ -6886,8 +31154,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientSort", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -6895,122 +31163,69 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientPatientAliasPatientAliasesIsAliasAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "date_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "date_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "namespace", + "name": "reason", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "reason_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "reason_ENDS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "reason_IN", "description": null, "type": { "kind": "LIST", @@ -7019,8 +31234,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasAggregateInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -7030,11 +31245,11 @@ "deprecationReason": null }, { - "name": "count", + "name": "reason_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7042,11 +31257,11 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "reason_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7054,11 +31269,11 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "reason_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7066,23 +31281,31 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "reason_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count_LTE", + "name": "reason_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7090,183 +31313,111 @@ "deprecationReason": null }, { - "name": "node", + "name": "reason_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "result", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "result_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasConnectWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientPatientAliasesIsAliasConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "result_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientPatientAliasesIsAliasRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "result_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "result_NOT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "result_NOT_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasSort", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "result_NOT_ENDS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "result_NOT_IN", "description": null, "type": { "kind": "LIST", @@ -7275,8 +31426,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -7286,11 +31437,11 @@ "deprecationReason": null }, { - "name": "node", + "name": "result_NOT_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7298,61 +31449,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "result_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "status", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "status_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasDeleteInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7360,116 +31485,75 @@ "deprecationReason": null }, { - "name": "where", + "name": "status_ENDS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "status_IN", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasDisconnectInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "status_NOT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "status_NOT_CONTAINS", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "status_NOT_ENDS_WITH", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasCreateFieldInput", - "ofType": null - } - } + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "status_NOT_IN", "description": null, "type": { "kind": "LIST", @@ -7478,8 +31562,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -7489,31 +31573,23 @@ "deprecationReason": null }, { - "name": "OR", + "name": "status_NOT_STARTS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_EQUAL", + "name": "status_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7521,11 +31597,11 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GT", + "name": "temposHasEventAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventAggregateInput", "ofType": null }, "defaultValue": null, @@ -7533,11 +31609,11 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GTE", + "name": "temposHasEventConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", "ofType": null }, "defaultValue": null, @@ -7545,11 +31621,11 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LT", + "name": "temposHasEventConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", "ofType": null }, "defaultValue": null, @@ -7557,11 +31633,11 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LTE", + "name": "temposHasEventConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", "ofType": null }, "defaultValue": null, @@ -7569,11 +31645,11 @@ "deprecationReason": null }, { - "name": "namespace_EQUAL", + "name": "temposHasEventConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "QcCompleteTemposHasEventConnectionWhere", "ofType": null }, "defaultValue": null, @@ -7581,11 +31657,11 @@ "deprecationReason": null }, { - "name": "namespace_GT", - "description": null, + "name": "temposHasEvent_ALL", + "description": "Return QcCompletes where all of the related Tempos match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, @@ -7593,11 +31669,11 @@ "deprecationReason": null }, { - "name": "namespace_GTE", - "description": null, + "name": "temposHasEvent_NONE", + "description": "Return QcCompletes where none of the related Tempos match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, @@ -7605,11 +31681,11 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_EQUAL", - "description": null, + "name": "temposHasEvent_SINGLE", + "description": "Return QcCompletes where one of the related Tempos match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, @@ -7617,397 +31693,1677 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_GT", - "description": null, + "name": "temposHasEvent_SOME", + "description": "Return QcCompletes where some of the related Tempos match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QcCompletesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcCompleteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "namespace_LONGEST_GTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_LT", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "bamCompletes", + "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamComplete", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_LTE", + "name": "bamCompletesAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamCompleteAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LT", + "name": "bamCompletesConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamCompletesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortCompletes", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortComplete", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LTE", + "name": "cohortCompletesAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortCompleteAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_EQUAL", + "name": "cohortCompletesConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortCompletesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohorts", + "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cohort", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsAggregate", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortAggregateSelection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CohortSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortsConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_GT", + "name": "mafCompletes", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafComplete", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_GTE", + "name": "mafCompletesAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafCompleteAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_LT", + "name": "mafCompletesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafCompletesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_LTE", + "name": "patientAliases", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAlias", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_AVERAGE_EQUAL", + "name": "patientAliasesAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAliasAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_AVERAGE_GT", + "name": "patientAliasesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAliasesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_AVERAGE_GTE", + "name": "patientIdsTriplets", "description": null, + "args": [ + { + "name": "patientIds", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientIdsTriplet", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_AVERAGE_LT", + "name": "patients", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Patient", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_AVERAGE_LTE", + "name": "patientsAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_EQUAL", + "name": "patientsConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PatientSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PatientsConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_GT", + "name": "projects", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_GTE", + "name": "projectsAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_LONGEST_EQUAL", + "name": "projectsConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectsConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_LONGEST_GT", + "name": "qcCompletes", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcComplete", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_LONGEST_GTE", + "name": "qcCompletesAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcCompleteAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_LONGEST_LT", + "name": "qcCompletesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcCompletesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_LONGEST_LTE", + "name": "requestMetadata", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadata", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_LT", + "name": "requestMetadataAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_LTE", + "name": "requestMetadataConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_SHORTEST_EQUAL", + "name": "requests", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_SHORTEST_GT", + "name": "requestsAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_SHORTEST_GTE", + "name": "requestsConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestsConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_SHORTEST_LT", + "name": "sampleAliases", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAlias", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_SHORTEST_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientPatientAliasesIsAliasRelationship", - "description": null, - "fields": [ - { - "name": "cursor", + "name": "sampleAliasesAggregate", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SampleAliasAggregateSelection", "ofType": null } }, @@ -8015,231 +33371,440 @@ "deprecationReason": null }, { - "name": "node", + "name": "sampleAliasesConnection", "description": null, - "args": [], + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PatientAlias", + "name": "SampleAliasesConnection", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasUpdateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "sampleMetadata", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectFieldInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadata", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "sampleMetadataAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasCreateFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "SampleMetadataAggregateSelection", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "sampleMetadataConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasDeleteFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "SampleMetadataConnection", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "samples", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasDisconnectFieldInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "samplesAggregate", "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasUpdateConnectionInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAggregateSelection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "samplesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SamplesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientRelationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasSampleSamples", + "name": "statuses", "description": null, + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesCreateFieldInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Status", + "ofType": null + } } } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAlias", + "name": "statusesAggregate", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasCreateFieldInput", + "name": "StatusWhere", "ofType": null - } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientSampleHasSampleSamplesAggregationSelection", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "StatusAggregateSelection", "ofType": null } }, @@ -8247,38 +33812,68 @@ "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PatientSampleHasSampleSamplesNodeAggregateSelection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientSampleHasSampleSamplesNodeAggregateSelection", - "description": null, - "fields": [ - { - "name": "datasource", + "name": "statusesConnection", "description": null, - "args": [], + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSort", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", + "name": "StatusesConnection", "ofType": null } }, @@ -8286,31 +33881,77 @@ "deprecationReason": null }, { - "name": "sampleCategory", + "name": "tempos", "description": null, - "args": [], + "args": [ + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "temposAggregate", "description": null, - "args": [], + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", + "name": "TempoAggregateSelection", "ofType": null } }, @@ -8318,15 +33959,52 @@ "deprecationReason": null }, { - "name": "smileSampleId", + "name": "temposConnection", "description": null, - "args": [], + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", + "name": "TemposConnection", "ofType": null } }, @@ -8340,533 +34018,638 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PatientSort", - "description": "Fields to sort Patients by. The order in which sorts are applied is not guaranteed when specifying many fields in one PatientSort object.", - "fields": null, - "inputFields": [ - { - "name": "smilePatientId", - "description": null, - "type": { - "kind": "ENUM", - "name": "SortDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientUpdateInput", + "kind": "OBJECT", + "name": "Request", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "hasSampleSamples", + "name": "bicAnalysis", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesUpdateFieldInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAlias", + "name": "dataAccessEmails", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasUpdateFieldInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", + "name": "dataAnalystEmail", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "dataAnalystName", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamplesAggregate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesAggregateInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamplesConnection_ALL", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamplesConnection_NONE", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamplesConnection_SINGLE", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamplesConnection_SOME", + "name": "genePanel", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientHasSampleSamplesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamples_ALL", - "description": "Return Patients where all of the related Samples match this filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamples_NONE", - "description": "Return Patients where none of the related Samples match this filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamples_SINGLE", - "description": "Return Patients where one of the related Samples match this filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasSampleSamples_SOME", - "description": "Return Patients where some of the related Samples match this filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAliasAggregate", + "name": "hasMetadataRequestMetadata", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasAggregateInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadata", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAliasConnection_ALL", + "name": "hasMetadataRequestMetadataAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", + "kind": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAliasConnection_NONE", + "name": "hasMetadataRequestMetadataConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestHasMetadataRequestMetadataConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAliasConnection_SINGLE", + "name": "hasSampleSamples", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAliasConnection_SOME", + "name": "hasSampleSamplesAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientPatientAliasesIsAliasConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "patientAliasesIsAlias_ALL", - "description": "Return Patients where all of the related PatientAliases match this filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "patientAliasesIsAlias_NONE", - "description": "Return Patients where none of the related PatientAliases match this filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", + "kind": "OBJECT", + "name": "RequestSampleHasSampleSamplesAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAlias_SINGLE", - "description": "Return Patients where one of the related PatientAliases match this filter", + "name": "hasSampleSamplesConnection", + "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestHasSampleSamplesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesIsAlias_SOME", - "description": "Return Patients where some of the related PatientAliases match this filter", + "name": "igoProjectId", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_CONTAINS", + "name": "investigatorEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_ENDS_WITH", + "name": "investigatorName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_IN", + "name": "isCmoRequest", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_NOT", + "name": "labHeadEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_NOT_CONTAINS", + "name": "labHeadName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_NOT_ENDS_WITH", + "name": "libraryType", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_NOT_IN", + "name": "namespace", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_NOT_STARTS_WITH", + "name": "otherContactEmails", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_STARTS_WITH", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PatientsConnection", - "description": null, - "fields": [ - { - "name": "edges", + "name": "piEmail", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientEdge", - "ofType": null - } - } + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "pooledNormals", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -8874,7 +34657,7 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "projectManagerName", "description": null, "args": [], "type": { @@ -8882,26 +34665,15 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Project", - "description": null, - "fields": [ + }, { - "name": "hasRequestRequests", + "name": "projectsHasRequest", "description": null, "args": [ { @@ -8921,7 +34693,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestOptions", + "name": "ProjectOptions", "ofType": null }, "defaultValue": null, @@ -8933,7 +34705,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -8952,7 +34724,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Request", + "name": "Project", "ofType": null } } @@ -8962,7 +34734,7 @@ "deprecationReason": null }, { - "name": "hasRequestRequestsAggregate", + "name": "projectsHasRequestAggregate", "description": null, "args": [ { @@ -8982,7 +34754,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -8992,14 +34764,14 @@ ], "type": { "kind": "OBJECT", - "name": "ProjectRequestHasRequestRequestsAggregationSelection", + "name": "RequestProjectProjectsHasRequestAggregationSelection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasRequestRequestsConnection", + "name": "projectsHasRequestConnection", "description": null, "args": [ { @@ -9049,7 +34821,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionSort", + "name": "RequestProjectsHasRequestConnectionSort", "ofType": null } } @@ -9063,7 +34835,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -9076,7 +34848,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProjectHasRequestRequestsConnection", + "name": "RequestProjectsHasRequestConnection", "ofType": null } }, @@ -9084,7 +34856,7 @@ "deprecationReason": null }, { - "name": "igoProjectId", + "name": "qcAccessEmails", "description": null, "args": [], "type": { @@ -9100,7 +34872,7 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "requestJson", "description": null, "args": [], "type": { @@ -9114,44 +34886,17 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectAggregateSelection", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "igoProjectId", + "name": "smileRequestId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -9159,17 +34904,13 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "strand", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -9181,195 +34922,68 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "ProjectConnectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hasRequestRequests", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectConnectWhere", + "kind": "OBJECT", + "name": "RequestAggregateSelection", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "node", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hasRequestRequests", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsFieldInput", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "dataAccessEmails", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "dataAnalystEmail", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectDeleteInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hasRequestRequests", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsDeleteFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectDisconnectInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hasRequestRequests", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsDisconnectFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectEdge", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "dataAnalystName", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -9377,7 +34991,7 @@ "deprecationReason": null }, { - "name": "node", + "name": "genePanel", "description": null, "args": [], "type": { @@ -9385,216 +34999,79 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "igoProjectId", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsAggregateInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsAggregateInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", + "name": "investigatorEmail", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestConnectInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestConnectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectHasRequestRequestsConnection", - "description": null, - "fields": [ - { - "name": "edges", + "name": "investigatorName", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectHasRequestRequestsRelationship", - "ofType": null - } - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "labHeadEmail", "description": null, "args": [], "type": { @@ -9602,7 +35079,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PageInfo", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -9610,230 +35087,179 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "labHeadName", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionSort", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestSort", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "libraryType", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", - "ofType": null - } + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "namespace", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "otherContactEmails", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node_NOT", + "name": "piEmail", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "projectManagerName", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestCreateInput", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "qcAccessEmails", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "RequestDeleteInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "requestJson", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "smileRequestId", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "RequestDisconnectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "strand", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsFieldInput", + "name": "RequestConnectInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "hasMetadataRequestMetadata", "description": null, "type": { "kind": "LIST", @@ -9843,7 +35269,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectFieldInput", + "name": "RequestHasMetadataRequestMetadataConnectFieldInput", "ofType": null } } @@ -9853,7 +35279,7 @@ "deprecationReason": null }, { - "name": "create", + "name": "hasSampleSamples", "description": null, "type": { "kind": "LIST", @@ -9863,7 +35289,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsCreateFieldInput", + "name": "RequestHasSampleSamplesConnectFieldInput", "ofType": null } } @@ -9871,20 +35297,9 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "projectsHasRequest", "description": null, "type": { "kind": "LIST", @@ -9894,7 +35309,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", + "name": "RequestProjectsHasRequestConnectFieldInput", "ofType": null } } @@ -9902,93 +35317,131 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "OR", + "name": "node", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsNodeAggregationWhereInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAccessEmails_AVERAGE_EQUAL", + "name": "bicAnalysis", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_GT", + "name": "dataAccessEmails", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_GTE", + "name": "dataAnalystEmail", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_LT", + "name": "dataAnalystName", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_LTE", + "name": "genePanel", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_EQUAL", + "name": "hasMetadataRequestMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataFieldInput", "ofType": null }, "defaultValue": null, @@ -9996,11 +35449,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_GT", + "name": "hasSampleSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesFieldInput", "ofType": null }, "defaultValue": null, @@ -10008,95 +35461,123 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_GTE", + "name": "igoProjectId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_EQUAL", + "name": "igoRequestId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_GT", + "name": "investigatorEmail", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_GTE", + "name": "investigatorName", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_LT", + "name": "isCmoRequest", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_LTE", + "name": "labHeadEmail", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LT", + "name": "labHeadName", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LTE", + "name": "libraryType", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -10104,71 +35585,91 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_EQUAL", + "name": "namespace", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_GT", + "name": "otherContactEmails", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_GTE", + "name": "piEmail", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_LT", + "name": "pooledNormals", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_LTE", + "name": "projectManagerName", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_EQUAL", + "name": "projectsHasRequest", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestFieldInput", "ofType": null }, "defaultValue": null, @@ -10176,175 +35677,303 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_GT", + "name": "qcAccessEmails", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_GTE", + "name": "requestJson", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_LT", + "name": "smileRequestId", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_LTE", + "name": "strand", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystEmail_EQUAL", + "name": "hasMetadataRequestMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_GT", + "name": "hasSampleSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_GTE", + "name": "projectsHasRequest", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystEmail_LONGEST_EQUAL", + "name": "hasMetadataRequestMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_GT", + "name": "hasSampleSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_GTE", + "name": "projectsHasRequest", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestEdge", + "description": null, + "fields": [ { - "name": "dataAnalystEmail_LONGEST_LT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_LTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystEmail_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -10356,7 +35985,7 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -10368,7 +35997,7 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -10380,7 +36009,7 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -10392,7 +36021,7 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -10404,119 +36033,207 @@ "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestHasMetadataRequestMetadataConnection", + "description": null, + "fields": [ { - "name": "dataAnalystName_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestHasMetadataRequestMetadataRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -10524,35 +36241,61 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDeleteInput", "ofType": null }, "defaultValue": null, @@ -10560,23 +36303,34 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDisconnectInput", "ofType": null }, "defaultValue": null, @@ -10584,67 +36338,121 @@ "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_AVERAGE_EQUAL", + "name": "igoRequestId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -10656,7 +36464,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GT", + "name": "igoRequestId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -10668,7 +36476,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GTE", + "name": "igoRequestId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -10680,7 +36488,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LT", + "name": "igoRequestId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -10692,7 +36500,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LTE", + "name": "igoRequestId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -10704,7 +36512,7 @@ "deprecationReason": null }, { - "name": "genePanel_EQUAL", + "name": "igoRequestId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -10716,7 +36524,7 @@ "deprecationReason": null }, { - "name": "genePanel_GT", + "name": "igoRequestId_GT", "description": null, "type": { "kind": "SCALAR", @@ -10728,7 +36536,7 @@ "deprecationReason": null }, { - "name": "genePanel_GTE", + "name": "igoRequestId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -10740,7 +36548,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_EQUAL", + "name": "igoRequestId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -10752,7 +36560,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_GT", + "name": "igoRequestId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -10764,7 +36572,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_GTE", + "name": "igoRequestId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -10776,7 +36584,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_LT", + "name": "igoRequestId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -10788,7 +36596,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_LTE", + "name": "igoRequestId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -10800,7 +36608,7 @@ "deprecationReason": null }, { - "name": "genePanel_LT", + "name": "igoRequestId_LT", "description": null, "type": { "kind": "SCALAR", @@ -10812,7 +36620,7 @@ "deprecationReason": null }, { - "name": "genePanel_LTE", + "name": "igoRequestId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -10824,7 +36632,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_EQUAL", + "name": "igoRequestId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -10836,7 +36644,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GT", + "name": "igoRequestId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -10848,7 +36656,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GTE", + "name": "igoRequestId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -10860,7 +36668,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LT", + "name": "igoRequestId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -10872,7 +36680,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LTE", + "name": "igoRequestId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -10884,7 +36692,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_EQUAL", + "name": "importDate_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -10896,7 +36704,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_GT", + "name": "importDate_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -10908,7 +36716,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_GTE", + "name": "importDate_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -10920,7 +36728,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_LT", + "name": "importDate_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -10932,7 +36740,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_LTE", + "name": "importDate_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -10944,7 +36752,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_EQUAL", + "name": "importDate_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -10956,7 +36764,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_GT", + "name": "importDate_GT", "description": null, "type": { "kind": "SCALAR", @@ -10968,7 +36776,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_GTE", + "name": "importDate_GTE", "description": null, "type": { "kind": "SCALAR", @@ -10980,7 +36788,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_EQUAL", + "name": "importDate_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -10992,7 +36800,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GT", + "name": "importDate_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -11004,7 +36812,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GTE", + "name": "importDate_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11016,7 +36824,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_LT", + "name": "importDate_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -11028,7 +36836,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_LTE", + "name": "importDate_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11040,7 +36848,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_LT", + "name": "importDate_LT", "description": null, "type": { "kind": "SCALAR", @@ -11052,7 +36860,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_LTE", + "name": "importDate_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11064,7 +36872,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_EQUAL", + "name": "importDate_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11076,7 +36884,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_GT", + "name": "importDate_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -11088,7 +36896,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_GTE", + "name": "importDate_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11100,7 +36908,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_LT", + "name": "importDate_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -11112,7 +36920,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_LTE", + "name": "importDate_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11124,7 +36932,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_EQUAL", + "name": "requestMetadataJson_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11136,7 +36944,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GT", + "name": "requestMetadataJson_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -11148,7 +36956,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GTE", + "name": "requestMetadataJson_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11160,7 +36968,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LT", + "name": "requestMetadataJson_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -11172,7 +36980,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LTE", + "name": "requestMetadataJson_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11184,7 +36992,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_EQUAL", + "name": "requestMetadataJson_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11196,7 +37004,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_GT", + "name": "requestMetadataJson_GT", "description": null, "type": { "kind": "SCALAR", @@ -11208,7 +37016,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_GTE", + "name": "requestMetadataJson_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11220,7 +37028,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_EQUAL", + "name": "requestMetadataJson_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11232,7 +37040,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GT", + "name": "requestMetadataJson_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -11244,7 +37052,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GTE", + "name": "requestMetadataJson_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11256,7 +37064,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LT", + "name": "requestMetadataJson_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -11268,7 +37076,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LTE", + "name": "requestMetadataJson_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11280,7 +37088,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LT", + "name": "requestMetadataJson_LT", "description": null, "type": { "kind": "SCALAR", @@ -11292,7 +37100,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LTE", + "name": "requestMetadataJson_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11304,7 +37112,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_EQUAL", + "name": "requestMetadataJson_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11316,7 +37124,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GT", + "name": "requestMetadataJson_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -11328,7 +37136,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GTE", + "name": "requestMetadataJson_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11340,7 +37148,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LT", + "name": "requestMetadataJson_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -11352,7 +37160,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LTE", + "name": "requestMetadataJson_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11362,145 +37170,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "investigatorEmail_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorEmail_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorEmail_AVERAGE_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorEmail_AVERAGE_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestHasMetadataRequestMetadataRelationship", + "description": null, + "fields": [ { - "name": "investigatorEmail_AVERAGE_LTE", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadata", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorEmail_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorEmail_GTE", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_EQUAL", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_GT", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_GTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_LT", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -11508,43 +37341,70 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_LTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorEmail_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -11556,7 +37416,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -11568,7 +37428,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11580,7 +37440,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -11592,7 +37452,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11604,119 +37464,207 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestHasSampleSamplesConnection", + "description": null, + "fields": [ { - "name": "investigatorName_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestHasSampleSamplesRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -11724,35 +37672,61 @@ "deprecationReason": null }, { - "name": "investigatorName_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", "ofType": null }, "defaultValue": null, @@ -11760,23 +37734,34 @@ "deprecationReason": null }, { - "name": "investigatorName_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", "ofType": null }, "defaultValue": null, @@ -11784,67 +37769,121 @@ "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "investigatorName_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_EQUAL", + "name": "datasource_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11856,7 +37895,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_GT", + "name": "datasource_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -11868,7 +37907,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_GTE", + "name": "datasource_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11880,7 +37919,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_LT", + "name": "datasource_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -11892,7 +37931,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_LTE", + "name": "datasource_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -11904,7 +37943,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_EQUAL", + "name": "datasource_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11916,7 +37955,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_GT", + "name": "datasource_GT", "description": null, "type": { "kind": "SCALAR", @@ -11928,7 +37967,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_GTE", + "name": "datasource_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11940,7 +37979,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_EQUAL", + "name": "datasource_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -11952,7 +37991,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_GT", + "name": "datasource_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -11964,7 +38003,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_GTE", + "name": "datasource_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -11976,7 +38015,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_LT", + "name": "datasource_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -11988,7 +38027,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_LTE", + "name": "datasource_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12000,7 +38039,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LT", + "name": "datasource_LT", "description": null, "type": { "kind": "SCALAR", @@ -12012,7 +38051,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LTE", + "name": "datasource_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12024,7 +38063,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_EQUAL", + "name": "datasource_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12036,7 +38075,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_GT", + "name": "datasource_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -12048,7 +38087,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_GTE", + "name": "datasource_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12060,7 +38099,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_LT", + "name": "datasource_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -12072,7 +38111,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_LTE", + "name": "datasource_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12084,7 +38123,7 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_EQUAL", + "name": "sampleCategory_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12096,7 +38135,7 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_GT", + "name": "sampleCategory_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -12108,7 +38147,7 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_GTE", + "name": "sampleCategory_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12120,7 +38159,7 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_LT", + "name": "sampleCategory_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -12132,7 +38171,7 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_LTE", + "name": "sampleCategory_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12144,7 +38183,7 @@ "deprecationReason": null }, { - "name": "labHeadName_EQUAL", + "name": "sampleCategory_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12156,7 +38195,7 @@ "deprecationReason": null }, { - "name": "labHeadName_GT", + "name": "sampleCategory_GT", "description": null, "type": { "kind": "SCALAR", @@ -12168,7 +38207,7 @@ "deprecationReason": null }, { - "name": "labHeadName_GTE", + "name": "sampleCategory_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12180,7 +38219,7 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_EQUAL", + "name": "sampleCategory_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12192,7 +38231,7 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_GT", + "name": "sampleCategory_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -12204,7 +38243,7 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_GTE", + "name": "sampleCategory_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12216,7 +38255,7 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_LT", + "name": "sampleCategory_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -12228,7 +38267,7 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_LTE", + "name": "sampleCategory_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12240,7 +38279,7 @@ "deprecationReason": null }, { - "name": "labHeadName_LT", + "name": "sampleCategory_LT", "description": null, "type": { "kind": "SCALAR", @@ -12252,7 +38291,7 @@ "deprecationReason": null }, { - "name": "labHeadName_LTE", + "name": "sampleCategory_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12264,7 +38303,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_EQUAL", + "name": "sampleCategory_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12276,7 +38315,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_GT", + "name": "sampleCategory_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -12288,7 +38327,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_GTE", + "name": "sampleCategory_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12300,7 +38339,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_LT", + "name": "sampleCategory_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -12312,7 +38351,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_LTE", + "name": "sampleCategory_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12324,7 +38363,7 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_EQUAL", + "name": "sampleClass_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12336,7 +38375,7 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_GT", + "name": "sampleClass_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -12348,7 +38387,7 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_GTE", + "name": "sampleClass_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12360,7 +38399,7 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_LT", + "name": "sampleClass_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -12372,7 +38411,7 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_LTE", + "name": "sampleClass_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12384,7 +38423,7 @@ "deprecationReason": null }, { - "name": "libraryType_EQUAL", + "name": "sampleClass_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12396,7 +38435,7 @@ "deprecationReason": null }, { - "name": "libraryType_GT", + "name": "sampleClass_GT", "description": null, "type": { "kind": "SCALAR", @@ -12408,7 +38447,7 @@ "deprecationReason": null }, { - "name": "libraryType_GTE", + "name": "sampleClass_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12420,7 +38459,7 @@ "deprecationReason": null }, { - "name": "libraryType_LONGEST_EQUAL", + "name": "sampleClass_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12432,7 +38471,7 @@ "deprecationReason": null }, { - "name": "libraryType_LONGEST_GT", + "name": "sampleClass_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -12444,7 +38483,7 @@ "deprecationReason": null }, { - "name": "libraryType_LONGEST_GTE", + "name": "sampleClass_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12456,7 +38495,7 @@ "deprecationReason": null }, { - "name": "libraryType_LONGEST_LT", + "name": "sampleClass_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -12468,7 +38507,7 @@ "deprecationReason": null }, { - "name": "libraryType_LONGEST_LTE", + "name": "sampleClass_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12480,7 +38519,7 @@ "deprecationReason": null }, { - "name": "libraryType_LT", + "name": "sampleClass_LT", "description": null, "type": { "kind": "SCALAR", @@ -12492,7 +38531,7 @@ "deprecationReason": null }, { - "name": "libraryType_LTE", + "name": "sampleClass_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12504,7 +38543,7 @@ "deprecationReason": null }, { - "name": "libraryType_SHORTEST_EQUAL", + "name": "sampleClass_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12516,7 +38555,7 @@ "deprecationReason": null }, { - "name": "libraryType_SHORTEST_GT", + "name": "sampleClass_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -12528,7 +38567,7 @@ "deprecationReason": null }, { - "name": "libraryType_SHORTEST_GTE", + "name": "sampleClass_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12540,7 +38579,7 @@ "deprecationReason": null }, { - "name": "libraryType_SHORTEST_LT", + "name": "sampleClass_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -12552,7 +38591,7 @@ "deprecationReason": null }, { - "name": "libraryType_SHORTEST_LTE", + "name": "sampleClass_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12564,7 +38603,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_EQUAL", + "name": "smileSampleId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12576,7 +38615,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GT", + "name": "smileSampleId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -12588,7 +38627,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GTE", + "name": "smileSampleId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12600,7 +38639,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LT", + "name": "smileSampleId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -12612,7 +38651,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LTE", + "name": "smileSampleId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12624,7 +38663,7 @@ "deprecationReason": null }, { - "name": "namespace_EQUAL", + "name": "smileSampleId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12636,7 +38675,7 @@ "deprecationReason": null }, { - "name": "namespace_GT", + "name": "smileSampleId_GT", "description": null, "type": { "kind": "SCALAR", @@ -12648,7 +38687,7 @@ "deprecationReason": null }, { - "name": "namespace_GTE", + "name": "smileSampleId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12660,7 +38699,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_EQUAL", + "name": "smileSampleId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12672,7 +38711,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_GT", + "name": "smileSampleId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -12684,7 +38723,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_GTE", + "name": "smileSampleId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12696,7 +38735,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_LT", + "name": "smileSampleId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -12708,7 +38747,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_LTE", + "name": "smileSampleId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12720,7 +38759,7 @@ "deprecationReason": null }, { - "name": "namespace_LT", + "name": "smileSampleId_LT", "description": null, "type": { "kind": "SCALAR", @@ -12732,7 +38771,7 @@ "deprecationReason": null }, { - "name": "namespace_LTE", + "name": "smileSampleId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12744,7 +38783,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_EQUAL", + "name": "smileSampleId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -12756,7 +38795,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GT", + "name": "smileSampleId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -12768,7 +38807,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GTE", + "name": "smileSampleId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -12780,7 +38819,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_LT", + "name": "smileSampleId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -12792,7 +38831,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_LTE", + "name": "smileSampleId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -12802,169 +38841,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "otherContactEmails_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otherContactEmails_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otherContactEmails_AVERAGE_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otherContactEmails_AVERAGE_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otherContactEmails_AVERAGE_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "otherContactEmails_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestHasSampleSamplesRelationship", + "description": null, + "fields": [ { - "name": "otherContactEmails_GT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_GTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_LONGEST_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_LONGEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_LT", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_LT", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -12972,251 +39012,679 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadata", + "description": null, + "fields": [ { - "name": "otherContactEmails_SHORTEST_EQUAL", + "name": "hasStatusStatuses", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Status", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_GT", + "name": "hasStatusStatusesAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "RequestMetadataStatusHasStatusStatusesAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_GTE", + "name": "hasStatusStatusesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataHasStatusStatusesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_LT", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_LTE", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_AVERAGE_EQUAL", + "name": "requestMetadataJson", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_AVERAGE_GT", + "name": "requestsHasMetadata", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_AVERAGE_GTE", + "name": "requestsHasMetadataAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "RequestMetadataRequestRequestsHasMetadataAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_AVERAGE_LT", + "name": "requestsHasMetadataConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataAggregateSelection", + "description": null, + "fields": [ { - "name": "piEmail_AVERAGE_LTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_EQUAL", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_GT", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_GTE", + "name": "requestMetadataJson", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_LONGEST_EQUAL", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_LONGEST_GT", + "name": "requestsHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_LONGEST_GTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataConnection", + "description": null, + "fields": [ { - "name": "piEmail_LONGEST_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataEdge", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_LONGEST_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_LT", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_LTE", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesFieldInput", "ofType": null }, "defaultValue": null, @@ -13224,151 +39692,263 @@ "deprecationReason": null }, { - "name": "piEmail_SHORTEST_EQUAL", + "name": "igoRequestId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_SHORTEST_GT", + "name": "importDate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_SHORTEST_GTE", + "name": "requestMetadataJson", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_SHORTEST_LT", + "name": "requestsHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataFieldInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_SHORTEST_LTE", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_EQUAL", + "name": "requestsHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "projectManagerName_AVERAGE_GT", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_GTE", + "name": "requestsHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataEdge", + "description": null, + "fields": [ { - "name": "projectManagerName_AVERAGE_LT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_LTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadata", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "projectManagerName_EQUAL", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_GT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_GTE", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -13380,7 +39960,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_EQUAL", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -13392,7 +39972,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_GT", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -13404,7 +39984,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_GTE", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -13416,7 +39996,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_LT", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -13428,119 +40008,207 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_LTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "projectManagerName_LT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_LTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataHasStatusStatusesConnection", + "description": null, + "fields": [ { - "name": "projectManagerName_SHORTEST_EQUAL", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataHasStatusStatusesRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_GT", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_GTE", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "projectManagerName_SHORTEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "projectManagerName_SHORTEST_LTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, @@ -13548,35 +40216,61 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "qcAccessEmails_AVERAGE_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "qcAccessEmails_AVERAGE_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusDeleteInput", "ofType": null }, "defaultValue": null, @@ -13584,23 +40278,34 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "qcAccessEmails_GT", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusDisconnectInput", "ofType": null }, "defaultValue": null, @@ -13608,71 +40313,125 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "qcAccessEmails_LONGEST_EQUAL", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_GT", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "qcAccessEmails_LONGEST_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_LT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_LTE", + "name": "validationReport_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -13680,11 +40439,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LT", + "name": "validationReport_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -13692,11 +40451,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LTE", + "name": "validationReport_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -13704,11 +40463,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_EQUAL", + "name": "validationReport_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -13716,11 +40475,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_GT", + "name": "validationReport_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -13728,11 +40487,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_GTE", + "name": "validationReport_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13740,7 +40499,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_LT", + "name": "validationReport_GT", "description": null, "type": { "kind": "SCALAR", @@ -13752,7 +40511,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_LTE", + "name": "validationReport_GTE", "description": null, "type": { "kind": "SCALAR", @@ -13764,23 +40523,11 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requestJson_AVERAGE_GT", + "name": "validationReport_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13788,11 +40535,11 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_GTE", + "name": "validationReport_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13800,11 +40547,11 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_LT", + "name": "validationReport_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13812,11 +40559,11 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_LTE", + "name": "validationReport_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13824,11 +40571,11 @@ "deprecationReason": null }, { - "name": "requestJson_EQUAL", + "name": "validationReport_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13836,7 +40583,7 @@ "deprecationReason": null }, { - "name": "requestJson_GT", + "name": "validationReport_LT", "description": null, "type": { "kind": "SCALAR", @@ -13848,7 +40595,7 @@ "deprecationReason": null }, { - "name": "requestJson_GTE", + "name": "validationReport_LTE", "description": null, "type": { "kind": "SCALAR", @@ -13860,7 +40607,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_EQUAL", + "name": "validationReport_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -13872,7 +40619,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_GT", + "name": "validationReport_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -13884,7 +40631,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_GTE", + "name": "validationReport_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -13896,7 +40643,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_LT", + "name": "validationReport_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -13908,7 +40655,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_LTE", + "name": "validationReport_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -13918,97 +40665,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataHasStatusStatusesRelationship", + "description": null, + "fields": [ { - "name": "requestJson_LT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson_LTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Status", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestJson_SHORTEST_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestJson_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson_SHORTEST_LT", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson_SHORTEST_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_EQUAL", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -14016,23 +40836,34 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_GT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataOptions", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileRequestId_AVERAGE_GTE", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -14040,11 +40871,11 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_LT", + "name": "offset", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -14052,319 +40883,483 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_LTE", - "description": null, + "name": "sort", + "description": "Specify one or more RequestMetadataSort objects to sort RequestMetadata by. The sorts will be applied in the order in which they are arranged in the array.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataSort", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRelationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileRequestId_EQUAL", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_GT", + "name": "requestsHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataRequestRequestsHasMetadataAggregationSelection", + "description": null, + "fields": [ { - "name": "smileRequestId_GTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "smileRequestId_LONGEST_GT", + "name": "dataAccessEmails", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_GTE", + "name": "dataAnalystEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_LT", + "name": "dataAnalystName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_LTE", + "name": "genePanel", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_LT", + "name": "igoProjectId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_LTE", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_EQUAL", + "name": "investigatorEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_GT", + "name": "investigatorName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_GTE", + "name": "labHeadEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_LT", + "name": "labHeadName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_LTE", + "name": "libraryType", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_AVERAGE_EQUAL", + "name": "namespace", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_AVERAGE_GT", + "name": "otherContactEmails", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_AVERAGE_GTE", + "name": "piEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_AVERAGE_LT", + "name": "projectManagerName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_AVERAGE_LTE", + "name": "qcAccessEmails", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_EQUAL", + "name": "requestJson", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_GT", + "name": "smileRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_GTE", + "name": "strand", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "strand_LONGEST_EQUAL", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_LONGEST_GT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_LONGEST_GTE", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -14376,7 +41371,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_LT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -14388,7 +41383,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_LTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -14400,7 +41395,7 @@ "deprecationReason": null }, { - "name": "strand_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -14412,7 +41407,7 @@ "deprecationReason": null }, { - "name": "strand_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -14424,85 +41419,104 @@ "deprecationReason": null }, { - "name": "strand_SHORTEST_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "strand_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_SHORTEST_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnection", + "description": null, + "fields": [ { - "name": "strand_SHORTEST_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataRequestsHasMetadataRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_SHORTEST_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectHasRequestRequestsRelationship", - "description": null, - "fields": [ - { - "name": "cursor", + "name": "pageInfo", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageInfo", "ofType": null } }, @@ -14510,15 +41524,15 @@ "deprecationReason": null }, { - "name": "node", + "name": "totalCount", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Request", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -14533,7 +41547,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsUpdateConnectionInput", + "name": "RequestMetadataRequestsHasMetadataConnectionSort", "description": null, "fields": null, "inputFields": [ @@ -14542,7 +41556,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestUpdateInput", + "name": "RequestSort", "ofType": null }, "defaultValue": null, @@ -14556,12 +41570,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsUpdateFieldInput", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -14571,7 +41585,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectFieldInput", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", "ofType": null } } @@ -14581,7 +41595,7 @@ "deprecationReason": null }, { - "name": "create", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -14591,7 +41605,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsCreateFieldInput", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", "ofType": null } } @@ -14601,51 +41615,73 @@ "deprecationReason": null }, { - "name": "delete", + "name": "node", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsDeleteFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "node_NOT", "description": null, "type": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsDisconnectFieldInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestCreateInput", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "update", + "name": "delete", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsUpdateConnectionInput", + "name": "RequestDeleteInput", "ofType": null }, "defaultValue": null, @@ -14657,7 +41693,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -14671,16 +41707,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectOptions", + "name": "RequestMetadataRequestsHasMetadataDisconnectFieldInput", "description": null, "fields": null, "inputFields": [ { - "name": "limit", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestDisconnectInput", "ofType": null }, "defaultValue": null, @@ -14688,20 +41724,51 @@ "deprecationReason": null }, { - "name": "offset", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more ProjectSort objects to sort Projects by. The sorts will be applied in the order in which they are arranged in the array.", + "name": "create", + "description": null, "type": { "kind": "LIST", "name": null, @@ -14710,7 +41777,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectSort", + "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", "ofType": null } } @@ -14726,12 +41793,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ProjectRelationInput", + "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "hasRequestRequests", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -14741,7 +41808,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsCreateFieldInput", + "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", "ofType": null } } @@ -14749,378 +41816,297 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectRequestHasRequestRequestsAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "OR", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "dataAccessEmails_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "ProjectRequestHasRequestRequestsNodeAggregateSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectRequestHasRequestRequestsNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "dataAccessEmails", + "name": "dataAccessEmails_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "dataAccessEmails_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "dataAccessEmails_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "dataAccessEmails_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "dataAccessEmails_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "dataAccessEmails_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "dataAccessEmails_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName", + "name": "dataAccessEmails_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "dataAccessEmails_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName", + "name": "dataAccessEmails_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType", + "name": "dataAccessEmails_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "dataAccessEmails_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "dataAccessEmails_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail", + "name": "dataAccessEmails_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName", + "name": "dataAccessEmails_SHORTEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "dataAccessEmails_SHORTEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson", + "name": "dataAccessEmails_SHORTEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId", + "name": "dataAccessEmails_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand", + "name": "dataAccessEmails_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectSort", - "description": "Fields to sort Projects by. The order in which sorts are applied is not guaranteed when specifying many fields in one ProjectSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "igoProjectId", + "name": "dataAnalystEmail_AVERAGE_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -15128,50 +42114,31 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "dataAnalystEmail_AVERAGE_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasRequestRequests", + "name": "dataAnalystEmail_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "dataAnalystEmail_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -15183,74 +42150,47 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "dataAnalystEmail_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "dataAnalystEmail_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "dataAnalystEmail_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasRequestRequestsAggregate", + "name": "dataAnalystEmail_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15258,11 +42198,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequestsConnection_ALL", + "name": "dataAnalystEmail_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15270,11 +42210,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequestsConnection_NONE", + "name": "dataAnalystEmail_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15282,11 +42222,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequestsConnection_SINGLE", + "name": "dataAnalystEmail_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15294,11 +42234,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequestsConnection_SOME", + "name": "dataAnalystEmail_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectHasRequestRequestsConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15306,11 +42246,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequests_ALL", - "description": "Return Projects where all of the related Requests match this filter", + "name": "dataAnalystEmail_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15318,11 +42258,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequests_NONE", - "description": "Return Projects where none of the related Requests match this filter", + "name": "dataAnalystEmail_SHORTEST_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15330,11 +42270,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequests_SINGLE", - "description": "Return Projects where one of the related Requests match this filter", + "name": "dataAnalystEmail_SHORTEST_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15342,11 +42282,11 @@ "deprecationReason": null }, { - "name": "hasRequestRequests_SOME", - "description": "Return Projects where some of the related Requests match this filter", + "name": "dataAnalystEmail_SHORTEST_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15354,11 +42294,11 @@ "deprecationReason": null }, { - "name": "igoProjectId", + "name": "dataAnalystEmail_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15366,11 +42306,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_CONTAINS", + "name": "dataAnalystEmail_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15378,11 +42318,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_ENDS_WITH", + "name": "dataAnalystName_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -15390,31 +42330,23 @@ "deprecationReason": null }, { - "name": "igoProjectId_IN", + "name": "dataAnalystName_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_NOT", + "name": "dataAnalystName_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -15422,11 +42354,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_NOT_CONTAINS", + "name": "dataAnalystName_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -15434,11 +42366,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_NOT_ENDS_WITH", + "name": "dataAnalystName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -15446,31 +42378,23 @@ "deprecationReason": null }, { - "name": "igoProjectId_NOT_IN", + "name": "dataAnalystName_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_NOT_STARTS_WITH", + "name": "dataAnalystName_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15478,11 +42402,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_STARTS_WITH", + "name": "dataAnalystName_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15490,11 +42414,11 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "dataAnalystName_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15502,11 +42426,11 @@ "deprecationReason": null }, { - "name": "namespace_CONTAINS", + "name": "dataAnalystName_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15514,11 +42438,11 @@ "deprecationReason": null }, { - "name": "namespace_ENDS_WITH", + "name": "dataAnalystName_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15526,31 +42450,23 @@ "deprecationReason": null }, { - "name": "namespace_IN", + "name": "dataAnalystName_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT", + "name": "dataAnalystName_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15558,11 +42474,11 @@ "deprecationReason": null }, { - "name": "namespace_NOT_CONTAINS", + "name": "dataAnalystName_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15570,11 +42486,11 @@ "deprecationReason": null }, { - "name": "namespace_NOT_ENDS_WITH", + "name": "dataAnalystName_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15582,31 +42498,23 @@ "deprecationReason": null }, { - "name": "namespace_NOT_IN", + "name": "dataAnalystName_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT_STARTS_WITH", + "name": "dataAnalystName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -15614,2889 +42522,1307 @@ "deprecationReason": null }, { - "name": "namespace_STARTS_WITH", + "name": "dataAnalystName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectsConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "dataAnalystName_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "dataAnalystName_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "genePanel_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ + }, { - "name": "patientAliases", + "name": "genePanel_AVERAGE_GT", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAlias", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesAggregate", + "name": "genePanel_AVERAGE_GTE", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAliasAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientAliasesConnection", + "name": "genePanel_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_AVERAGE_LTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAliasesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientIdsTriplets", + "name": "genePanel_EQUAL", "description": null, - "args": [ - { - "name": "patientIds", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientIdsTriplet", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patients", + "name": "genePanel_GT", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Patient", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientsAggregate", + "name": "genePanel_GTE", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientsConnection", + "name": "genePanel_LONGEST_EQUAL", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PatientsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projects", + "name": "genePanel_LONGEST_GT", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsAggregate", + "name": "genePanel_LONGEST_GTE", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsConnection", + "name": "genePanel_LONGEST_LT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadata", + "name": "genePanel_LONGEST_LTE", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadata", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataAggregate", + "name": "genePanel_LT", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadataAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataConnection", + "name": "genePanel_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel_SHORTEST_LT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadataConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requests", + "name": "genePanel_SHORTEST_LTE", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Request", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsAggregate", + "name": "igoProjectId_AVERAGE_EQUAL", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsConnection", + "name": "igoProjectId_AVERAGE_GT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliases", + "name": "igoProjectId_AVERAGE_GTE", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAlias", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesAggregate", + "name": "igoProjectId_AVERAGE_LT", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAliasAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesConnection", + "name": "igoProjectId_AVERAGE_LTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAliasesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadata", + "name": "igoProjectId_EQUAL", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadata", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataAggregate", + "name": "igoProjectId_GT", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadataAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataConnection", + "name": "igoProjectId_GTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadataConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samples", + "name": "igoProjectId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LONGEST_LTE", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesAggregate", + "name": "igoProjectId_LT", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesConnection", + "name": "igoProjectId_LTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SamplesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "statuses", + "name": "igoProjectId_SHORTEST_EQUAL", "description": null, - "args": [ - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "statusesAggregate", + "name": "igoProjectId_SHORTEST_GT", "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StatusAggregateSelection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "statusesConnection", + "name": "igoProjectId_SHORTEST_GTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSort", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StatusesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Request", - "description": null, - "fields": [ + }, { - "name": "bicAnalysis", + "name": "igoProjectId_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails", + "name": "igoProjectId_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "igoRequestId_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "igoRequestId_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "igoRequestId_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataRequestMetadata", + "name": "igoRequestId_AVERAGE_LT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadata", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataRequestMetadataAggregate", + "name": "igoRequestId_AVERAGE_LTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataRequestMetadataConnection", + "name": "igoRequestId_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId_GT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestHasMetadataRequestMetadataConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamples", + "name": "igoRequestId_GTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamplesAggregate", + "name": "igoRequestId_LONGEST_EQUAL", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "RequestSampleHasSampleSamplesAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamplesConnection", + "name": "igoRequestId_LONGEST_GT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestHasSampleSamplesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "igoRequestId_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "igoRequestId_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "igoRequestId_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName", + "name": "igoRequestId_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isCmoRequest", + "name": "igoRequestId_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "igoRequestId_SHORTEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName", + "name": "igoRequestId_SHORTEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType", + "name": "igoRequestId_SHORTEST_GTE", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "igoRequestId_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "igoRequestId_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail", + "name": "investigatorEmail_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pooledNormals", + "name": "investigatorEmail_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName", + "name": "investigatorEmail_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "investigatorEmail_AVERAGE_LT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequestAggregate", + "name": "investigatorEmail_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail_LONGEST_GT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "RequestProjectProjectsHasRequestAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequestConnection", + "name": "investigatorEmail_LONGEST_GTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestProjectsHasRequestConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "investigatorEmail_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson", + "name": "investigatorEmail_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId", + "name": "investigatorEmail_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand", + "name": "investigatorEmail_LTE", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "investigatorEmail_SHORTEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails", + "name": "investigatorEmail_SHORTEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "investigatorEmail_SHORTEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "investigatorEmail_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "investigatorEmail_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "investigatorName_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "investigatorName_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "investigatorName_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName", + "name": "investigatorName_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "investigatorName_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName", + "name": "investigatorName_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType", + "name": "investigatorName_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "investigatorName_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "investigatorName_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail", + "name": "investigatorName_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName", + "name": "investigatorName_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "investigatorName_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson", + "name": "investigatorName_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId", + "name": "investigatorName_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand", + "name": "investigatorName_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasMetadataRequestMetadata", + "name": "investigatorName_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamples", + "name": "investigatorName_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "investigatorName_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "investigatorName_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "node", + "name": "investigatorName_SHORTEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "bicAnalysis", + "name": "labHeadEmail_AVERAGE_EQUAL", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails", + "name": "labHeadEmail_AVERAGE_GT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "labHeadEmail_AVERAGE_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "labHeadEmail_AVERAGE_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "labHeadEmail_AVERAGE_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataRequestMetadata", + "name": "labHeadEmail_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -18504,11 +43830,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamples", + "name": "labHeadEmail_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -18516,123 +43842,95 @@ "deprecationReason": null }, { - "name": "igoProjectId", + "name": "labHeadEmail_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "labHeadEmail_LONGEST_EQUAL", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "labHeadEmail_LONGEST_GT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName", + "name": "labHeadEmail_LONGEST_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isCmoRequest", + "name": "labHeadEmail_LONGEST_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "labHeadEmail_LONGEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName", + "name": "labHeadEmail_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType", + "name": "labHeadEmail_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -18640,91 +43938,71 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "labHeadEmail_SHORTEST_EQUAL", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "labHeadEmail_SHORTEST_GT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail", + "name": "labHeadEmail_SHORTEST_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pooledNormals", + "name": "labHeadEmail_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName", + "name": "labHeadEmail_SHORTEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "labHeadName_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestFieldInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -18732,303 +44010,175 @@ "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "labHeadName_AVERAGE_GT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson", + "name": "labHeadName_AVERAGE_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId", + "name": "labHeadName_AVERAGE_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand", + "name": "labHeadName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestDeleteInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasMetadataRequestMetadata", + "name": "labHeadName_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamples", + "name": "labHeadName_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "labHeadName_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestDisconnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasMetadataRequestMetadata", + "name": "labHeadName_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamples", + "name": "labHeadName_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "labHeadName_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestEdge", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "labHeadName_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "labHeadName_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Request", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "labHeadName_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "labHeadName_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "labHeadName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19040,7 +44190,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "labHeadName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19052,7 +44202,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "labHeadName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19064,7 +44214,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "labHeadName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19076,7 +44226,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "labHeadName_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19088,207 +44238,119 @@ "deprecationReason": null }, { - "name": "node", + "name": "libraryType_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "libraryType_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "libraryType_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataConnectWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestHasMetadataRequestMetadataConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "libraryType_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestHasMetadataRequestMetadataRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "libraryType_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "libraryType_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "libraryType_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataSort", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "libraryType_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "libraryType_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "libraryType_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -19296,61 +44358,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "libraryType_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "libraryType_LONGEST_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "libraryType_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDeleteInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -19358,34 +44394,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "libraryType_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "libraryType_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDisconnectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -19393,121 +44418,67 @@ "deprecationReason": null }, { - "name": "where", + "name": "libraryType_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "libraryType_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "libraryType_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "libraryType_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "libraryType_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_EQUAL", + "name": "namespace_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19519,7 +44490,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GT", + "name": "namespace_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -19531,7 +44502,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GTE", + "name": "namespace_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19543,7 +44514,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LT", + "name": "namespace_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -19555,7 +44526,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LTE", + "name": "namespace_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19567,7 +44538,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_EQUAL", + "name": "namespace_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19579,7 +44550,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_GT", + "name": "namespace_GT", "description": null, "type": { "kind": "SCALAR", @@ -19591,7 +44562,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_GTE", + "name": "namespace_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19603,7 +44574,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_EQUAL", + "name": "namespace_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19615,7 +44586,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GT", + "name": "namespace_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19627,7 +44598,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GTE", + "name": "namespace_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19639,7 +44610,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LT", + "name": "namespace_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19651,7 +44622,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LTE", + "name": "namespace_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19663,7 +44634,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LT", + "name": "namespace_LT", "description": null, "type": { "kind": "SCALAR", @@ -19675,7 +44646,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LTE", + "name": "namespace_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19687,7 +44658,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_EQUAL", + "name": "namespace_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19699,7 +44670,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GT", + "name": "namespace_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19711,7 +44682,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GTE", + "name": "namespace_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19723,7 +44694,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LT", + "name": "namespace_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19735,7 +44706,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LTE", + "name": "namespace_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19747,7 +44718,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_EQUAL", + "name": "otherContactEmails_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19759,7 +44730,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_GT", + "name": "otherContactEmails_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -19771,7 +44742,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_GTE", + "name": "otherContactEmails_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19783,7 +44754,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_LT", + "name": "otherContactEmails_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -19795,7 +44766,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_LTE", + "name": "otherContactEmails_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19807,7 +44778,7 @@ "deprecationReason": null }, { - "name": "importDate_EQUAL", + "name": "otherContactEmails_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19819,7 +44790,7 @@ "deprecationReason": null }, { - "name": "importDate_GT", + "name": "otherContactEmails_GT", "description": null, "type": { "kind": "SCALAR", @@ -19831,7 +44802,7 @@ "deprecationReason": null }, { - "name": "importDate_GTE", + "name": "otherContactEmails_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19843,7 +44814,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_EQUAL", + "name": "otherContactEmails_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19855,7 +44826,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_GT", + "name": "otherContactEmails_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19867,7 +44838,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_GTE", + "name": "otherContactEmails_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19879,7 +44850,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_LT", + "name": "otherContactEmails_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19891,7 +44862,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_LTE", + "name": "otherContactEmails_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19903,7 +44874,7 @@ "deprecationReason": null }, { - "name": "importDate_LT", + "name": "otherContactEmails_LT", "description": null, "type": { "kind": "SCALAR", @@ -19915,7 +44886,7 @@ "deprecationReason": null }, { - "name": "importDate_LTE", + "name": "otherContactEmails_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19927,7 +44898,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_EQUAL", + "name": "otherContactEmails_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19939,7 +44910,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_GT", + "name": "otherContactEmails_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19951,7 +44922,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_GTE", + "name": "otherContactEmails_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19963,7 +44934,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_LT", + "name": "otherContactEmails_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19975,7 +44946,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_LTE", + "name": "otherContactEmails_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19987,7 +44958,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_EQUAL", + "name": "piEmail_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19999,7 +44970,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_GT", + "name": "piEmail_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -20011,7 +44982,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_GTE", + "name": "piEmail_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -20023,7 +44994,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_LT", + "name": "piEmail_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -20035,7 +45006,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_LTE", + "name": "piEmail_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -20047,7 +45018,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_EQUAL", + "name": "piEmail_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -20059,7 +45030,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_GT", + "name": "piEmail_GT", "description": null, "type": { "kind": "SCALAR", @@ -20071,7 +45042,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_GTE", + "name": "piEmail_GTE", "description": null, "type": { "kind": "SCALAR", @@ -20083,7 +45054,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_EQUAL", + "name": "piEmail_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -20095,7 +45066,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_GT", + "name": "piEmail_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -20107,7 +45078,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_GTE", + "name": "piEmail_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -20119,7 +45090,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_LT", + "name": "piEmail_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -20131,7 +45102,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_LTE", + "name": "piEmail_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -20143,7 +45114,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LT", + "name": "piEmail_LT", "description": null, "type": { "kind": "SCALAR", @@ -20155,7 +45126,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LTE", + "name": "piEmail_LTE", "description": null, "type": { "kind": "SCALAR", @@ -20167,7 +45138,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_EQUAL", + "name": "piEmail_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -20179,7 +45150,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_GT", + "name": "piEmail_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -20191,7 +45162,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_GTE", + "name": "piEmail_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -20203,7 +45174,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_LT", + "name": "piEmail_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -20215,7 +45186,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_LTE", + "name": "piEmail_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -20225,170 +45196,133 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestHasMetadataRequestMetadataRelationship", - "description": null, - "fields": [ + }, + { + "name": "projectManagerName_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "cursor", + "name": "projectManagerName_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "projectManagerName_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadata", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "projectManagerName_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataUpdateInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "projectManagerName_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "projectManagerName_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "projectManagerName_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "projectManagerName_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "projectManagerName_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataUpdateConnectionInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -20396,70 +45330,43 @@ "deprecationReason": null }, { - "name": "where", + "name": "projectManagerName_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "projectManagerName_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "projectManagerName_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "projectManagerName_LTE", "description": null, "type": { "kind": "SCALAR", @@ -20471,7 +45378,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "projectManagerName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -20483,7 +45390,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "projectManagerName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -20495,7 +45402,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "projectManagerName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -20507,7 +45414,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "projectManagerName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -20519,207 +45426,119 @@ "deprecationReason": null }, { - "name": "node", + "name": "projectManagerName_SHORTEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "qcAccessEmails_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "qcAccessEmails_AVERAGE_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleConnectWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestHasSampleSamplesConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "qcAccessEmails_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestHasSampleSamplesRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "qcAccessEmails_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "qcAccessEmails_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "qcAccessEmails_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSort", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "qcAccessEmails_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "qcAccessEmails_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "qcAccessEmails_LONGEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -20727,61 +45546,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "qcAccessEmails_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "qcAccessEmails_LONGEST_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "qcAccessEmails_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -20789,34 +45582,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "qcAccessEmails_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "qcAccessEmails_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDisconnectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -20824,121 +45606,79 @@ "deprecationReason": null }, { - "name": "where", + "name": "qcAccessEmails_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "qcAccessEmails_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "qcAccessEmails_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "qcAccessEmails_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "AND", + "name": "qcAccessEmails_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "qcAccessEmails_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_AVERAGE_EQUAL", + "name": "requestJson_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -20950,7 +45690,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GT", + "name": "requestJson_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -20962,7 +45702,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GTE", + "name": "requestJson_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -20974,7 +45714,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LT", + "name": "requestJson_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -20986,7 +45726,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LTE", + "name": "requestJson_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -20998,7 +45738,7 @@ "deprecationReason": null }, { - "name": "datasource_EQUAL", + "name": "requestJson_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21010,7 +45750,7 @@ "deprecationReason": null }, { - "name": "datasource_GT", + "name": "requestJson_GT", "description": null, "type": { "kind": "SCALAR", @@ -21022,7 +45762,7 @@ "deprecationReason": null }, { - "name": "datasource_GTE", + "name": "requestJson_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21034,7 +45774,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_EQUAL", + "name": "requestJson_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21046,7 +45786,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GT", + "name": "requestJson_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21058,7 +45798,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GTE", + "name": "requestJson_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21070,7 +45810,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LT", + "name": "requestJson_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21082,7 +45822,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LTE", + "name": "requestJson_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21094,7 +45834,7 @@ "deprecationReason": null }, { - "name": "datasource_LT", + "name": "requestJson_LT", "description": null, "type": { "kind": "SCALAR", @@ -21106,7 +45846,7 @@ "deprecationReason": null }, { - "name": "datasource_LTE", + "name": "requestJson_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21118,7 +45858,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_EQUAL", + "name": "requestJson_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21130,7 +45870,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GT", + "name": "requestJson_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21142,7 +45882,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GTE", + "name": "requestJson_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21154,7 +45894,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LT", + "name": "requestJson_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21166,7 +45906,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LTE", + "name": "requestJson_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21178,7 +45918,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_EQUAL", + "name": "smileRequestId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21190,7 +45930,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GT", + "name": "smileRequestId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -21202,7 +45942,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GTE", + "name": "smileRequestId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21214,7 +45954,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LT", + "name": "smileRequestId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -21226,7 +45966,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LTE", + "name": "smileRequestId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21238,7 +45978,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_EQUAL", + "name": "smileRequestId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21250,7 +45990,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GT", + "name": "smileRequestId_GT", "description": null, "type": { "kind": "SCALAR", @@ -21262,7 +46002,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GTE", + "name": "smileRequestId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21274,7 +46014,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_EQUAL", + "name": "smileRequestId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21286,7 +46026,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GT", + "name": "smileRequestId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21298,7 +46038,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GTE", + "name": "smileRequestId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21310,7 +46050,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LT", + "name": "smileRequestId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21322,7 +46062,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LTE", + "name": "smileRequestId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21334,7 +46074,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LT", + "name": "smileRequestId_LT", "description": null, "type": { "kind": "SCALAR", @@ -21346,7 +46086,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LTE", + "name": "smileRequestId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21358,7 +46098,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_EQUAL", + "name": "smileRequestId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21370,7 +46110,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GT", + "name": "smileRequestId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21382,7 +46122,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GTE", + "name": "smileRequestId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21394,7 +46134,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LT", + "name": "smileRequestId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21406,7 +46146,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LTE", + "name": "smileRequestId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21418,7 +46158,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_EQUAL", + "name": "strand_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21430,7 +46170,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GT", + "name": "strand_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -21442,7 +46182,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GTE", + "name": "strand_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21454,7 +46194,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LT", + "name": "strand_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -21466,7 +46206,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LTE", + "name": "strand_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21478,7 +46218,7 @@ "deprecationReason": null }, { - "name": "sampleClass_EQUAL", + "name": "strand_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21490,7 +46230,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GT", + "name": "strand_GT", "description": null, "type": { "kind": "SCALAR", @@ -21502,7 +46242,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GTE", + "name": "strand_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21514,7 +46254,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_EQUAL", + "name": "strand_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21526,7 +46266,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GT", + "name": "strand_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21538,7 +46278,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GTE", + "name": "strand_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21550,7 +46290,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LT", + "name": "strand_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21562,7 +46302,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LTE", + "name": "strand_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21574,7 +46314,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LT", + "name": "strand_LT", "description": null, "type": { "kind": "SCALAR", @@ -21586,7 +46326,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LTE", + "name": "strand_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21598,7 +46338,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_EQUAL", + "name": "strand_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21610,7 +46350,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GT", + "name": "strand_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21622,7 +46362,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GTE", + "name": "strand_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21634,7 +46374,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LT", + "name": "strand_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21646,7 +46386,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LTE", + "name": "strand_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21656,61 +46396,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataRequestsHasMetadataRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GT", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_LT", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_LTE", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -21718,23 +46567,34 @@ "deprecationReason": null }, { - "name": "smileSampleId_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataSort", + "description": "Fields to sort RequestMetadata by. The order in which sorts are applied is not guaranteed when specifying many fields in one RequestMetadataSort object.", + "fields": null, + "inputFields": [ { - "name": "smileSampleId_GT", + "name": "igoRequestId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -21742,11 +46602,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_GTE", + "name": "importDate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -21754,35 +46614,120 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_EQUAL", + "name": "requestMetadataJson", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataStatusHasStatusStatusesAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "RequestMetadataStatusHasStatusStatusesNodeAggregateSelection", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataStatusHasStatusStatusesNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "validationReport", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasStatusStatuses", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesUpdateFieldInput", + "ofType": null + } + } + }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GTE", + "name": "igoRequestId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -21790,11 +46735,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LT", + "name": "importDate", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -21802,11 +46747,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LTE", + "name": "requestMetadataJson", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -21814,11 +46759,82 @@ "deprecationReason": null }, { - "name": "smileSampleId_LT", + "name": "requestsHasMetadata", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasStatusStatusesAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesAggregateInput", "ofType": null }, "defaultValue": null, @@ -21826,11 +46842,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_LTE", + "name": "hasStatusStatusesConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -21838,11 +46854,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_EQUAL", + "name": "hasStatusStatusesConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -21850,11 +46866,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GT", + "name": "hasStatusStatusesConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -21862,11 +46878,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GTE", + "name": "hasStatusStatusesConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -21874,11 +46890,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LT", - "description": null, + "name": "hasStatusStatuses_ALL", + "description": "Return RequestMetadata where all of the related Statuses match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, @@ -21886,136 +46902,79 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LTE", - "description": null, + "name": "hasStatusStatuses_NONE", + "description": "Return RequestMetadata where none of the related Statuses match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestHasSampleSamplesRelationship", - "description": null, - "fields": [ + }, { - "name": "cursor", - "description": null, - "args": [], + "name": "hasStatusStatuses_SINGLE", + "description": "Return RequestMetadata where one of the related Statuses match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "hasStatusStatuses_SOME", + "description": "Return RequestMetadata where some of the related Statuses match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "igoRequestId", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleUpdateInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "igoRequestId_CONTAINS", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "igoRequestId_ENDS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "igoRequestId_IN", "description": null, "type": { "kind": "LIST", @@ -22024,8 +46983,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDeleteFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -22035,31 +46994,23 @@ "deprecationReason": null }, { - "name": "disconnect", + "name": "igoRequestId_NOT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "igoRequestId_NOT_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesUpdateConnectionInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -22067,530 +47018,235 @@ "deprecationReason": null }, { - "name": "where", + "name": "igoRequestId_NOT_ENDS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadata", - "description": null, - "fields": [ + }, { - "name": "hasStatusStatuses", + "name": "igoRequestId_NOT_IN", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatusesAggregate", + "name": "igoRequestId_NOT_STARTS_WITH", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "RequestMetadataStatusHasStatusStatusesAggregationSelection", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatusesConnection", + "name": "igoRequestId_STARTS_WITH", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadataHasStatusStatusesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "importDate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "importDate_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataJson", + "name": "importDate_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadata", + "name": "importDate_IN", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Request", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadataAggregate", + "name": "importDate_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "importDate_NOT_CONTAINS", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "RequestMetadataRequestRequestsHasMetadataAggregationSelection", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadataConnection", + "name": "importDate_NOT_ENDS_WITH", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "importDate_NOT_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "importDate_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "importDate_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "requestMetadataJson", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "requestMetadataJson_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson_IN", "description": null, "type": { "kind": "LIST", @@ -22599,8 +47255,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -22610,7 +47266,43 @@ "deprecationReason": null }, { - "name": "requestsHasMetadata", + "name": "requestMetadataJson_NOT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson_NOT_IN", "description": null, "type": { "kind": "LIST", @@ -22619,8 +47311,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -22628,118 +47320,61 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "requestMetadataJson_NOT_STARTS_WITH", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "requestMetadataJson_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadataEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "requestsHasMetadataAggregate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataAggregateInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "requestsHasMetadataConnection_ALL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "requestsHasMetadataConnection_NONE", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesFieldInput", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -22747,59 +47382,71 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "requestsHasMetadataConnection_SINGLE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "requestsHasMetadataConnection_SOME", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataJson", - "description": null, + "name": "requestsHasMetadata_ALL", + "description": "Return RequestMetadata where all of the related Requests match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadata", - "description": null, + "name": "requestsHasMetadata_NONE", + "description": "Return RequestMetadata where none of the related Requests match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataFieldInput", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadata_SINGLE", + "description": "Return RequestMetadata where one of the related Requests match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadata_SOME", + "description": "Return RequestMetadata where some of the related Requests match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -22813,33 +47460,37 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataDeleteInput", + "name": "RequestOptions", "description": null, "fields": null, "inputFields": [ { - "name": "hasStatusStatuses", + "name": "limit", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadata", + "name": "offset", "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more RequestSort objects to sort Requests by. The sorts will be applied in the order in which they are arranged in the array.", "type": { "kind": "LIST", "name": null, @@ -22848,7 +47499,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataDeleteFieldInput", + "name": "RequestSort", "ofType": null } } @@ -22863,71 +47514,59 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDisconnectInput", + "kind": "OBJECT", + "name": "RequestProjectProjectsHasRequestAggregationSelection", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "hasStatusStatuses", + "name": "count", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesDisconnectFieldInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadata", + "name": "node", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataDisconnectFieldInput", - "ofType": null - } - } + "kind": "OBJECT", + "name": "RequestProjectProjectsHasRequestNodeAggregateSelection", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "RequestMetadataEdge", + "name": "RequestProjectProjectsHasRequestNodeAggregateSelection", "description": null, "fields": [ { - "name": "cursor", + "name": "igoProjectId", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -22935,7 +47574,7 @@ "deprecationReason": null }, { - "name": "node", + "name": "namespace", "description": null, "args": [], "type": { @@ -22943,7 +47582,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RequestMetadata", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -22958,7 +47597,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesAggregateInput", + "name": "RequestProjectsHasRequestAggregateInput", "description": null, "fields": null, "inputFields": [ @@ -22973,7 +47612,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesAggregateInput", + "name": "RequestProjectsHasRequestAggregateInput", "ofType": null } } @@ -22993,7 +47632,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesAggregateInput", + "name": "RequestProjectsHasRequestAggregateInput", "ofType": null } } @@ -23067,7 +47706,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "RequestProjectsHasRequestNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, @@ -23081,7 +47720,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "name": "RequestProjectsHasRequestConnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -23096,7 +47735,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusConnectInput", + "name": "ProjectConnectInput", "ofType": null } } @@ -23110,7 +47749,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusConnectWhere", + "name": "ProjectConnectWhere", "ofType": null }, "defaultValue": null, @@ -23124,7 +47763,7 @@ }, { "kind": "OBJECT", - "name": "RequestMetadataHasStatusStatusesConnection", + "name": "RequestProjectsHasRequestConnection", "description": null, "fields": [ { @@ -23142,7 +47781,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RequestMetadataHasStatusStatusesRelationship", + "name": "RequestProjectsHasRequestRelationship", "ofType": null } } @@ -23191,7 +47830,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionSort", + "name": "RequestProjectsHasRequestConnectionSort", "description": null, "fields": null, "inputFields": [ @@ -23200,7 +47839,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSort", + "name": "ProjectSort", "ofType": null }, "defaultValue": null, @@ -23214,7 +47853,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "name": "RequestProjectsHasRequestConnectionWhere", "description": null, "fields": null, "inputFields": [ @@ -23229,7 +47868,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null } } @@ -23249,7 +47888,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null } } @@ -23263,7 +47902,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -23275,7 +47914,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -23289,7 +47928,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "name": "RequestProjectsHasRequestCreateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -23301,7 +47940,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusCreateInput", + "name": "ProjectCreateInput", "ofType": null } }, @@ -23316,7 +47955,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesDeleteFieldInput", + "name": "RequestProjectsHasRequestDeleteFieldInput", "description": null, "fields": null, "inputFields": [ @@ -23325,7 +47964,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusDeleteInput", + "name": "ProjectDeleteInput", "ofType": null }, "defaultValue": null, @@ -23337,7 +47976,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -23351,7 +47990,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesDisconnectFieldInput", + "name": "RequestProjectsHasRequestDisconnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -23360,7 +47999,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusDisconnectInput", + "name": "ProjectDisconnectInput", "ofType": null }, "defaultValue": null, @@ -23372,7 +48011,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -23386,7 +48025,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesFieldInput", + "name": "RequestProjectsHasRequestFieldInput", "description": null, "fields": null, "inputFields": [ @@ -23401,7 +48040,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "name": "RequestProjectsHasRequestConnectFieldInput", "ofType": null } } @@ -23421,7 +48060,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "name": "RequestProjectsHasRequestCreateFieldInput", "ofType": null } } @@ -23437,7 +48076,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "RequestProjectsHasRequestNodeAggregationWhereInput", "description": null, "fields": null, "inputFields": [ @@ -23452,7 +48091,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "RequestProjectsHasRequestNodeAggregationWhereInput", "ofType": null } } @@ -23472,7 +48111,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "RequestProjectsHasRequestNodeAggregationWhereInput", "ofType": null } } @@ -23482,7 +48121,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_EQUAL", + "name": "igoProjectId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -23494,7 +48133,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_GT", + "name": "igoProjectId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -23506,7 +48145,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_GTE", + "name": "igoProjectId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -23518,7 +48157,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_LT", + "name": "igoProjectId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -23530,7 +48169,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_LTE", + "name": "igoProjectId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -23542,7 +48181,7 @@ "deprecationReason": null }, { - "name": "validationReport_EQUAL", + "name": "igoProjectId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -23554,7 +48193,7 @@ "deprecationReason": null }, { - "name": "validationReport_GT", + "name": "igoProjectId_GT", "description": null, "type": { "kind": "SCALAR", @@ -23566,7 +48205,7 @@ "deprecationReason": null }, { - "name": "validationReport_GTE", + "name": "igoProjectId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -23578,7 +48217,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_EQUAL", + "name": "igoProjectId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -23590,7 +48229,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_GT", + "name": "igoProjectId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -23602,7 +48241,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_GTE", + "name": "igoProjectId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -23614,7 +48253,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_LT", + "name": "igoProjectId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -23626,7 +48265,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_LTE", + "name": "igoProjectId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -23638,7 +48277,247 @@ "deprecationReason": null }, { - "name": "validationReport_LT", + "name": "igoProjectId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace_LT", "description": null, "type": { "kind": "SCALAR", @@ -23650,7 +48529,7 @@ "deprecationReason": null }, { - "name": "validationReport_LTE", + "name": "namespace_LTE", "description": null, "type": { "kind": "SCALAR", @@ -23662,7 +48541,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_EQUAL", + "name": "namespace_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -23674,7 +48553,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_GT", + "name": "namespace_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -23686,7 +48565,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_GTE", + "name": "namespace_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -23698,7 +48577,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_LT", + "name": "namespace_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -23710,7 +48589,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_LTE", + "name": "namespace_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -23728,7 +48607,7 @@ }, { "kind": "OBJECT", - "name": "RequestMetadataHasStatusStatusesRelationship", + "name": "RequestProjectsHasRequestRelationship", "description": null, "fields": [ { @@ -23756,7 +48635,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Status", + "name": "Project", "ofType": null } }, @@ -23771,7 +48650,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", + "name": "RequestProjectsHasRequestUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ @@ -23780,7 +48659,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusUpdateInput", + "name": "ProjectUpdateInput", "ofType": null }, "defaultValue": null, @@ -23794,7 +48673,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesUpdateFieldInput", + "name": "RequestProjectsHasRequestUpdateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -23809,7 +48688,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "name": "RequestProjectsHasRequestConnectFieldInput", "ofType": null } } @@ -23829,7 +48708,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "name": "RequestProjectsHasRequestCreateFieldInput", "ofType": null } } @@ -23849,7 +48728,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesDeleteFieldInput", + "name": "RequestProjectsHasRequestDeleteFieldInput", "ofType": null } } @@ -23869,7 +48748,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesDisconnectFieldInput", + "name": "RequestProjectsHasRequestDisconnectFieldInput", "ofType": null } } @@ -23883,7 +48762,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", + "name": "RequestProjectsHasRequestUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -23895,7 +48774,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -23909,37 +48788,53 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataOptions", + "name": "RequestRelationInput", "description": null, "fields": null, "inputFields": [ { - "name": "limit", + "name": "hasMetadataRequestMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "offset", + "name": "hasSampleSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more RequestMetadataSort objects to sort RequestMetadata by. The sorts will be applied in the order in which they are arranged in the array.", + "name": "projectsHasRequest", + "description": null, "type": { "kind": "LIST", "name": null, @@ -23948,7 +48843,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataSort", + "name": "RequestProjectsHasRequestCreateFieldInput", "ofType": null } } @@ -23963,59 +48858,106 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRelationInput", + "kind": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "hasStatusStatuses", + "name": "count", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesCreateFieldInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadata", + "name": "node", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "igoRequestId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "importDate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "RequestMetadataRequestRequestsHasMetadataAggregationSelection", + "name": "RequestSampleHasSampleSamplesAggregationSelection", "description": null, "fields": [ { @@ -24037,376 +48979,635 @@ { "name": "node", "description": null, - "args": [], + "args": [], + "type": { + "kind": "OBJECT", + "name": "RequestSampleHasSampleSamplesNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestSampleHasSampleSamplesNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "datasource", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestSort", + "description": "Fields to sort Requests by. The order in which sorts are applied is not guaranteed when specifying many fields in one RequestSort object.", + "fields": null, + "inputFields": [ + { + "name": "bicAnalysis", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorName", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isCmoRequest", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestJson", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileRequestId", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "strand", + "description": null, "type": { - "kind": "OBJECT", - "name": "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection", + "kind": "INPUT_OBJECT", + "name": "RequestUpdateInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "dataAccessEmails", + "name": "bicAnalysis", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "dataAccessEmails", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "dataAnalystEmail", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "dataAnalystName", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "genePanel", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "hasMetadataRequestMetadata", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataUpdateFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "hasSampleSamples", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesUpdateFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName", + "name": "igoProjectId", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "igoRequestId", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName", + "name": "investigatorEmail", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType", + "name": "investigatorName", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "isCmoRequest", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "labHeadEmail", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail", + "name": "labHeadName", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName", + "name": "libraryType", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "namespace", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson", + "name": "otherContactEmails", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId", + "name": "piEmail", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand", + "name": "pooledNormals", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "pooledNormals_POP", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "pooledNormals_PUSH", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataAggregateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -24414,11 +49615,11 @@ "deprecationReason": null }, { - "name": "count", + "name": "projectManagerName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24426,23 +49627,31 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "projectsHasRequest", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestUpdateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count_GTE", + "name": "qcAccessEmails", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24450,11 +49659,11 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "requestJson", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24462,11 +49671,11 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "smileRequestId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24474,11 +49683,11 @@ "deprecationReason": null }, { - "name": "node", + "name": "strand", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24492,12 +49701,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", + "name": "RequestWhere", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -24507,7 +49716,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestConnectInput", + "name": "RequestWhere", "ofType": null } } @@ -24517,120 +49726,87 @@ "deprecationReason": null }, { - "name": "where", + "name": "OR", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestConnectWhere", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bicAnalysis", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "bicAnalysis_NOT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadataRequestsHasMetadataRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "dataAccessEmails", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "dataAccessEmails_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "dataAccessEmails_ENDS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestSort", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "dataAccessEmails_IN", "description": null, "type": { "kind": "LIST", @@ -24639,8 +49815,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -24650,31 +49826,23 @@ "deprecationReason": null }, { - "name": "OR", + "name": "dataAccessEmails_NOT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "dataAccessEmails_NOT_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24682,61 +49850,43 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "dataAccessEmails_NOT_ENDS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "dataAccessEmails_NOT_IN", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestCreateInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "dataAccessEmails_NOT_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestDeleteInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24744,34 +49894,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "dataAccessEmails_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "dataAnalystEmail", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestDisconnectInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24779,50 +49918,31 @@ "deprecationReason": null }, { - "name": "where", + "name": "dataAnalystEmail_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "dataAnalystEmail_ENDS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "dataAnalystEmail_IN", "description": null, "type": { "kind": "LIST", @@ -24831,8 +49951,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -24840,64 +49960,37 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "dataAnalystEmail_NOT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "dataAnalystEmail_NOT_CONTAINS", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_EQUAL", + "name": "dataAnalystEmail_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24905,23 +49998,31 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_GT", + "name": "dataAnalystEmail_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_GTE", + "name": "dataAnalystEmail_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24929,11 +50030,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_LT", + "name": "dataAnalystEmail_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24941,11 +50042,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_LTE", + "name": "dataAnalystName", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24953,7 +50054,7 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_EQUAL", + "name": "dataAnalystName_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -24965,11 +50066,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_GT", + "name": "dataAnalystName_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -24977,23 +50078,31 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_GTE", + "name": "dataAnalystName_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_EQUAL", + "name": "dataAnalystName_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25001,11 +50110,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_GT", + "name": "dataAnalystName_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25013,11 +50122,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_GTE", + "name": "dataAnalystName_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25025,23 +50134,31 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_LT", + "name": "dataAnalystName_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_LTE", + "name": "dataAnalystName_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25049,11 +50166,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LT", + "name": "dataAnalystName_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25061,11 +50178,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LTE", + "name": "genePanel", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25073,11 +50190,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_EQUAL", + "name": "genePanel_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25085,11 +50202,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_GT", + "name": "genePanel_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25097,23 +50214,31 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_GTE", + "name": "genePanel_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_LT", + "name": "genePanel_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25121,11 +50246,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_LTE", + "name": "genePanel_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25133,11 +50258,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_EQUAL", + "name": "genePanel_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25145,23 +50270,31 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_GT", + "name": "genePanel_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_GTE", + "name": "genePanel_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25169,11 +50302,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_LT", + "name": "genePanel_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25181,11 +50314,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_LTE", + "name": "hasMetadataRequestMetadataAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataAggregateInput", "ofType": null }, "defaultValue": null, @@ -25193,11 +50326,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_EQUAL", + "name": "hasMetadataRequestMetadataConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25205,11 +50338,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_GT", + "name": "hasMetadataRequestMetadataConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25217,11 +50350,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_GTE", + "name": "hasMetadataRequestMetadataConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25229,11 +50362,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_EQUAL", + "name": "hasMetadataRequestMetadataConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25241,11 +50374,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_GT", - "description": null, + "name": "hasMetadataRequestMetadata_ALL", + "description": "Return Requests where all of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -25253,11 +50386,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_GTE", - "description": null, + "name": "hasMetadataRequestMetadata_NONE", + "description": "Return Requests where none of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -25265,11 +50398,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_LT", - "description": null, + "name": "hasMetadataRequestMetadata_SINGLE", + "description": "Return Requests where one of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -25277,11 +50410,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_LTE", - "description": null, + "name": "hasMetadataRequestMetadata_SOME", + "description": "Return Requests where some of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -25289,11 +50422,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LT", + "name": "hasSampleSamplesAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesAggregateInput", "ofType": null }, "defaultValue": null, @@ -25301,11 +50434,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LTE", + "name": "hasSampleSamplesConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25313,11 +50446,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_EQUAL", + "name": "hasSampleSamplesConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25325,11 +50458,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_GT", + "name": "hasSampleSamplesConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25337,11 +50470,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_GTE", + "name": "hasSampleSamplesConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -25349,11 +50482,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_LT", - "description": null, + "name": "hasSampleSamples_ALL", + "description": "Return Requests where all of the related Samples match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -25361,11 +50494,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_LTE", - "description": null, + "name": "hasSampleSamples_NONE", + "description": "Return Requests where none of the related Samples match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -25373,11 +50506,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_EQUAL", - "description": null, + "name": "hasSampleSamples_SINGLE", + "description": "Return Requests where one of the related Samples match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -25385,11 +50518,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_GT", - "description": null, + "name": "hasSampleSamples_SOME", + "description": "Return Requests where some of the related Samples match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -25397,11 +50530,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_GTE", + "name": "igoProjectId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25409,11 +50542,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_LT", + "name": "igoProjectId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25421,11 +50554,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_LTE", + "name": "igoProjectId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25433,7 +50566,27 @@ "deprecationReason": null }, { - "name": "dataAnalystName_EQUAL", + "name": "igoProjectId_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId_NOT", "description": null, "type": { "kind": "SCALAR", @@ -25445,11 +50598,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_GT", + "name": "igoProjectId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25457,11 +50610,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_GTE", + "name": "igoProjectId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25469,23 +50622,31 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_EQUAL", + "name": "igoProjectId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_GT", + "name": "igoProjectId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25493,11 +50654,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_GTE", + "name": "igoProjectId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25505,11 +50666,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_LT", + "name": "igoRequestId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25517,11 +50678,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_LTE", + "name": "igoRequestId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25529,11 +50690,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LT", + "name": "igoRequestId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25541,23 +50702,31 @@ "deprecationReason": null }, { - "name": "dataAnalystName_LTE", + "name": "igoRequestId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_EQUAL", + "name": "igoRequestId_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25565,11 +50734,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_GT", + "name": "igoRequestId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25577,11 +50746,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_GTE", + "name": "igoRequestId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25589,23 +50758,31 @@ "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_LT", + "name": "igoRequestId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_LTE", + "name": "igoRequestId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25613,11 +50790,11 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_EQUAL", + "name": "igoRequestId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25625,11 +50802,11 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GT", + "name": "investigatorEmail", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25637,11 +50814,11 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GTE", + "name": "investigatorEmail_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25649,11 +50826,11 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LT", + "name": "investigatorEmail_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25661,19 +50838,27 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LTE", + "name": "investigatorEmail_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_EQUAL", + "name": "investigatorEmail_NOT", "description": null, "type": { "kind": "SCALAR", @@ -25685,11 +50870,11 @@ "deprecationReason": null }, { - "name": "genePanel_GT", + "name": "investigatorEmail_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25697,11 +50882,11 @@ "deprecationReason": null }, { - "name": "genePanel_GTE", + "name": "investigatorEmail_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25709,23 +50894,31 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_EQUAL", + "name": "investigatorEmail_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LONGEST_GT", + "name": "investigatorEmail_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25733,11 +50926,11 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_GTE", + "name": "investigatorEmail_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25745,11 +50938,11 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_LT", + "name": "investigatorName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25757,11 +50950,11 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_LTE", + "name": "investigatorName_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25769,11 +50962,11 @@ "deprecationReason": null }, { - "name": "genePanel_LT", + "name": "investigatorName_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25781,23 +50974,31 @@ "deprecationReason": null }, { - "name": "genePanel_LTE", + "name": "investigatorName_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_SHORTEST_EQUAL", + "name": "investigatorName_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25805,11 +51006,11 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GT", + "name": "investigatorName_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25817,11 +51018,11 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GTE", + "name": "investigatorName_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25829,23 +51030,31 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LT", + "name": "investigatorName_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LTE", + "name": "investigatorName_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25853,11 +51062,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_EQUAL", + "name": "investigatorName_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25865,11 +51074,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_GT", + "name": "isCmoRequest", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -25877,11 +51086,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_GTE", + "name": "isCmoRequest_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -25889,11 +51098,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_LT", + "name": "labHeadEmail", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25901,11 +51110,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_LTE", + "name": "labHeadEmail_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25913,7 +51122,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_EQUAL", + "name": "labHeadEmail_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -25925,23 +51134,31 @@ "deprecationReason": null }, { - "name": "igoProjectId_GT", + "name": "labHeadEmail_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_GTE", + "name": "labHeadEmail_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25949,11 +51166,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_EQUAL", + "name": "labHeadEmail_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25961,11 +51178,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GT", + "name": "labHeadEmail_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25973,23 +51190,31 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GTE", + "name": "labHeadEmail_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_LT", + "name": "labHeadEmail_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -25997,11 +51222,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_LTE", + "name": "labHeadEmail_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26009,11 +51234,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LT", + "name": "labHeadName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26021,11 +51246,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LTE", + "name": "labHeadName_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26033,11 +51258,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_EQUAL", + "name": "labHeadName_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26045,23 +51270,31 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_GT", + "name": "labHeadName_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_GTE", + "name": "labHeadName_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26069,11 +51302,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_LT", + "name": "labHeadName_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26081,11 +51314,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_LTE", + "name": "labHeadName_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26093,23 +51326,31 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_EQUAL", + "name": "labHeadName_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GT", + "name": "labHeadName_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26117,11 +51358,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GTE", + "name": "labHeadName_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26129,11 +51370,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LT", + "name": "libraryType", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26141,11 +51382,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LTE", + "name": "libraryType_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26153,7 +51394,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_EQUAL", + "name": "libraryType_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -26165,23 +51406,27 @@ "deprecationReason": null }, { - "name": "igoRequestId_GT", + "name": "libraryType_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_GTE", + "name": "libraryType_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26189,11 +51434,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_EQUAL", + "name": "libraryType_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26201,11 +51446,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GT", + "name": "libraryType_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26213,23 +51458,27 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GTE", + "name": "libraryType_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LT", + "name": "libraryType_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26237,11 +51486,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LTE", + "name": "libraryType_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26249,11 +51498,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_LT", + "name": "namespace", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26261,11 +51510,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_LTE", + "name": "namespace_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26273,11 +51522,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_EQUAL", + "name": "namespace_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26285,23 +51534,31 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GT", + "name": "namespace_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GTE", + "name": "namespace_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26309,11 +51566,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LT", + "name": "namespace_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26321,11 +51578,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LTE", + "name": "namespace_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26333,23 +51590,31 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_EQUAL", + "name": "namespace_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_GT", + "name": "namespace_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26357,11 +51622,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_GTE", + "name": "namespace_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26369,11 +51634,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_LT", + "name": "otherContactEmails", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26381,11 +51646,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_LTE", + "name": "otherContactEmails_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26393,7 +51658,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_EQUAL", + "name": "otherContactEmails_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -26405,23 +51670,31 @@ "deprecationReason": null }, { - "name": "investigatorEmail_GT", + "name": "otherContactEmails_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_GTE", + "name": "otherContactEmails_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26429,11 +51702,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_EQUAL", + "name": "otherContactEmails_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26441,11 +51714,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_GT", + "name": "otherContactEmails_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26453,11 +51726,31 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_GTE", + "name": "otherContactEmails_NOT_IN", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26465,11 +51758,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_LT", + "name": "otherContactEmails_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26477,11 +51770,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_LTE", + "name": "piEmail", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26489,11 +51782,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LT", + "name": "piEmail_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26501,11 +51794,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LTE", + "name": "piEmail_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26513,23 +51806,31 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_EQUAL", + "name": "piEmail_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_GT", + "name": "piEmail_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26537,11 +51838,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_GTE", + "name": "piEmail_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26549,11 +51850,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_LT", + "name": "piEmail_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26561,23 +51862,31 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_LTE", + "name": "piEmail_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_EQUAL", + "name": "piEmail_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26585,11 +51894,11 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_GT", + "name": "piEmail_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26597,23 +51906,27 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_GTE", + "name": "pooledNormals", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_LT", + "name": "pooledNormals_INCLUDES", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26621,19 +51934,23 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_LTE", + "name": "pooledNormals_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_EQUAL", + "name": "pooledNormals_NOT_INCLUDES", "description": null, "type": { "kind": "SCALAR", @@ -26645,11 +51962,11 @@ "deprecationReason": null }, { - "name": "investigatorName_GT", + "name": "projectManagerName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26657,11 +51974,11 @@ "deprecationReason": null }, { - "name": "investigatorName_GTE", + "name": "projectManagerName_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26669,11 +51986,11 @@ "deprecationReason": null }, { - "name": "investigatorName_LONGEST_EQUAL", + "name": "projectManagerName_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26681,23 +51998,31 @@ "deprecationReason": null }, { - "name": "investigatorName_LONGEST_GT", + "name": "projectManagerName_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_LONGEST_GTE", + "name": "projectManagerName_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26705,11 +52030,11 @@ "deprecationReason": null }, { - "name": "investigatorName_LONGEST_LT", + "name": "projectManagerName_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26717,11 +52042,11 @@ "deprecationReason": null }, { - "name": "investigatorName_LONGEST_LTE", + "name": "projectManagerName_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26729,23 +52054,31 @@ "deprecationReason": null }, { - "name": "investigatorName_LT", + "name": "projectManagerName_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_LTE", + "name": "projectManagerName_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26753,11 +52086,11 @@ "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_EQUAL", + "name": "projectManagerName_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26765,11 +52098,11 @@ "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_GT", + "name": "projectsHasRequestAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestAggregateInput", "ofType": null }, "defaultValue": null, @@ -26777,11 +52110,11 @@ "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_GTE", + "name": "projectsHasRequestConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -26789,11 +52122,11 @@ "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_LT", + "name": "projectsHasRequestConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -26801,11 +52134,11 @@ "deprecationReason": null }, { - "name": "investigatorName_SHORTEST_LTE", + "name": "projectsHasRequestConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -26813,11 +52146,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_EQUAL", + "name": "projectsHasRequestConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestConnectionWhere", "ofType": null }, "defaultValue": null, @@ -26825,11 +52158,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_GT", - "description": null, + "name": "projectsHasRequest_ALL", + "description": "Return Requests where all of the related Projects match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -26837,11 +52170,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_GTE", - "description": null, + "name": "projectsHasRequest_NONE", + "description": "Return Requests where none of the related Projects match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -26849,11 +52182,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_LT", - "description": null, + "name": "projectsHasRequest_SINGLE", + "description": "Return Requests where one of the related Projects match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -26861,11 +52194,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_LTE", - "description": null, + "name": "projectsHasRequest_SOME", + "description": "Return Requests where some of the related Projects match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "ProjectWhere", "ofType": null }, "defaultValue": null, @@ -26873,7 +52206,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_EQUAL", + "name": "qcAccessEmails", "description": null, "type": { "kind": "SCALAR", @@ -26885,11 +52218,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_GT", + "name": "qcAccessEmails_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26897,11 +52230,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_GTE", + "name": "qcAccessEmails_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26909,23 +52242,31 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_EQUAL", + "name": "qcAccessEmails_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_GT", + "name": "qcAccessEmails_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26933,11 +52274,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_GTE", + "name": "qcAccessEmails_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26945,11 +52286,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_LT", + "name": "qcAccessEmails_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26957,23 +52298,31 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_LTE", + "name": "qcAccessEmails_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail_LT", + "name": "qcAccessEmails_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26981,11 +52330,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LTE", + "name": "qcAccessEmails_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -26993,11 +52342,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_EQUAL", + "name": "requestJson", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27005,11 +52354,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_GT", + "name": "requestJson_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27017,11 +52366,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_GTE", + "name": "requestJson_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27029,23 +52378,31 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_LT", + "name": "requestJson_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_LTE", + "name": "requestJson_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27053,11 +52410,11 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_EQUAL", + "name": "requestJson_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27065,11 +52422,11 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_GT", + "name": "requestJson_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27077,23 +52434,31 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_GTE", + "name": "requestJson_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_LT", + "name": "requestJson_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27101,11 +52466,11 @@ "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_LTE", + "name": "requestJson_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27113,7 +52478,7 @@ "deprecationReason": null }, { - "name": "labHeadName_EQUAL", + "name": "smileRequestId", "description": null, "type": { "kind": "SCALAR", @@ -27125,11 +52490,11 @@ "deprecationReason": null }, { - "name": "labHeadName_GT", + "name": "smileRequestId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27137,11 +52502,11 @@ "deprecationReason": null }, { - "name": "labHeadName_GTE", + "name": "smileRequestId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27149,23 +52514,31 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_EQUAL", + "name": "smileRequestId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_LONGEST_GT", + "name": "smileRequestId_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27173,11 +52546,11 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_GTE", + "name": "smileRequestId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27185,11 +52558,11 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_LT", + "name": "smileRequestId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27197,23 +52570,31 @@ "deprecationReason": null }, { - "name": "labHeadName_LONGEST_LTE", + "name": "smileRequestId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_LT", + "name": "smileRequestId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27221,11 +52602,11 @@ "deprecationReason": null }, { - "name": "labHeadName_LTE", + "name": "smileRequestId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27233,11 +52614,11 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_EQUAL", + "name": "strand", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27245,11 +52626,11 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_GT", + "name": "strand_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27257,11 +52638,11 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_GTE", + "name": "strand_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27269,23 +52650,27 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_LT", + "name": "strand_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_LTE", + "name": "strand_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27293,11 +52678,11 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_EQUAL", + "name": "strand_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27305,11 +52690,11 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_GT", + "name": "strand_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27317,23 +52702,27 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_GTE", + "name": "strand_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_AVERAGE_LT", + "name": "strand_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -27341,515 +52730,1704 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_LTE", + "name": "strand_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestsConnection", + "description": null, + "fields": [ { - "name": "libraryType_EQUAL", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestEdge", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_GT", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_GTE", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Sample", + "description": null, + "fields": [ { - "name": "libraryType_LONGEST_EQUAL", + "name": "cohortsHasCohortSample", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cohort", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LONGEST_GT", + "name": "cohortsHasCohortSampleAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleCohortCohortsHasCohortSampleAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LONGEST_GTE", + "name": "cohortsHasCohortSampleConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleCohortsHasCohortSampleConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LONGEST_LT", + "name": "datasource", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LONGEST_LTE", + "name": "hasMetadataSampleMetadata", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadata", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LT", + "name": "hasMetadataSampleMetadataAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleSampleMetadataHasMetadataSampleMetadataAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LTE", + "name": "hasMetadataSampleMetadataConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleHasMetadataSampleMetadataConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_SHORTEST_EQUAL", + "name": "hasTempoTempos", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_SHORTEST_GT", + "name": "hasTempoTemposAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleTempoHasTempoTemposAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_SHORTEST_GTE", + "name": "hasTempoTemposConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleHasTempoTemposConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_SHORTEST_LT", + "name": "patientsHasSample", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Patient", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_SHORTEST_LTE", + "name": "patientsHasSampleAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SamplePatientPatientsHasSampleAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_EQUAL", + "name": "patientsHasSampleConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SamplePatientsHasSampleConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_GT", + "name": "requestsHasSample", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_GTE", + "name": "requestsHasSampleAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "SampleRequestRequestsHasSampleAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_LT", + "name": "requestsHasSampleConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleRequestsHasSampleConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_LTE", + "name": "revisable", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_EQUAL", + "name": "sampleAliasesIsAlias", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAlias", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_GT", + "name": "sampleAliasesIsAliasAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleSampleAliasSampleAliasesIsAliasAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_GTE", + "name": "sampleAliasesIsAliasConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleSampleAliasesIsAliasConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_EQUAL", + "name": "sampleCategory", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_GT", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_GTE", + "name": "smileSampleId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAggregateSelection", + "description": null, + "fields": [ { - "name": "namespace_LONGEST_LT", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_LTE", + "name": "datasource", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LT", + "name": "sampleCategory", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LTE", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_EQUAL", + "name": "smileSampleId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAlias", + "description": null, + "fields": [ { - "name": "namespace_SHORTEST_GT", + "name": "isAliasSamples", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_GTE", + "name": "isAliasSamplesAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleAliasSampleIsAliasSamplesAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_LT", + "name": "isAliasSamplesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAliasIsAliasSamplesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_LTE", + "name": "namespace", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_EQUAL", + "name": "value", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAliasAggregateSelection", + "description": null, + "fields": [ { - "name": "otherContactEmails_AVERAGE_GT", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_GTE", + "name": "namespace", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_LT", + "name": "value", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasConnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_AVERAGE_LTE", + "name": "isAliasSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_GT", + "name": "isAliasSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesFieldInput", "ofType": null }, "defaultValue": null, @@ -27857,103 +54435,195 @@ "deprecationReason": null }, { - "name": "otherContactEmails_GTE", + "name": "namespace", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_EQUAL", + "name": "value", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_LONGEST_GT", + "name": "isAliasSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_LONGEST_GTE", + "name": "isAliasSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAliasEdge", + "description": null, + "fields": [ { - "name": "otherContactEmails_LONGEST_LT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_LTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAlias", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "otherContactEmails_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -27965,7 +54635,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -27977,7 +54647,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -27989,7 +54659,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -28001,7 +54671,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28013,119 +54683,207 @@ "deprecationReason": null }, { - "name": "piEmail_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAliasIsAliasSamplesConnection", + "description": null, + "fields": [ { - "name": "piEmail_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAliasIsAliasSamplesRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -28133,35 +54891,61 @@ "deprecationReason": null }, { - "name": "piEmail_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", "ofType": null }, "defaultValue": null, @@ -28169,23 +54953,34 @@ "deprecationReason": null }, { - "name": "piEmail_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", "ofType": null }, "defaultValue": null, @@ -28193,67 +54988,121 @@ "deprecationReason": null }, { - "name": "piEmail_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "piEmail_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_EQUAL", + "name": "datasource_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28265,7 +55114,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_GT", + "name": "datasource_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -28277,7 +55126,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_GTE", + "name": "datasource_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28289,7 +55138,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_LT", + "name": "datasource_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -28301,7 +55150,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_LTE", + "name": "datasource_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28313,7 +55162,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_EQUAL", + "name": "datasource_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28325,7 +55174,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_GT", + "name": "datasource_GT", "description": null, "type": { "kind": "SCALAR", @@ -28337,7 +55186,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_GTE", + "name": "datasource_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28349,7 +55198,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_EQUAL", + "name": "datasource_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28361,7 +55210,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_GT", + "name": "datasource_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -28373,7 +55222,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_GTE", + "name": "datasource_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28385,7 +55234,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_LT", + "name": "datasource_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -28397,7 +55246,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_LTE", + "name": "datasource_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28409,7 +55258,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LT", + "name": "datasource_LT", "description": null, "type": { "kind": "SCALAR", @@ -28421,7 +55270,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LTE", + "name": "datasource_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28433,7 +55282,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_EQUAL", + "name": "datasource_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28445,7 +55294,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_GT", + "name": "datasource_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -28457,7 +55306,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_GTE", + "name": "datasource_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28469,7 +55318,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_LT", + "name": "datasource_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -28481,7 +55330,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_LTE", + "name": "datasource_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28493,7 +55342,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_EQUAL", + "name": "sampleCategory_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28505,7 +55354,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_GT", + "name": "sampleCategory_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -28517,7 +55366,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_GTE", + "name": "sampleCategory_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28529,7 +55378,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_LT", + "name": "sampleCategory_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -28541,7 +55390,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_LTE", + "name": "sampleCategory_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28553,7 +55402,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_EQUAL", + "name": "sampleCategory_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28565,7 +55414,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_GT", + "name": "sampleCategory_GT", "description": null, "type": { "kind": "SCALAR", @@ -28577,7 +55426,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_GTE", + "name": "sampleCategory_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28589,7 +55438,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_EQUAL", + "name": "sampleCategory_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28601,7 +55450,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_GT", + "name": "sampleCategory_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -28613,7 +55462,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_GTE", + "name": "sampleCategory_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28625,7 +55474,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_LT", + "name": "sampleCategory_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -28637,7 +55486,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_LTE", + "name": "sampleCategory_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28649,7 +55498,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LT", + "name": "sampleCategory_LT", "description": null, "type": { "kind": "SCALAR", @@ -28661,7 +55510,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LTE", + "name": "sampleCategory_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28673,7 +55522,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_EQUAL", + "name": "sampleCategory_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28685,7 +55534,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_GT", + "name": "sampleCategory_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -28697,7 +55546,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_GTE", + "name": "sampleCategory_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28709,7 +55558,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_LT", + "name": "sampleCategory_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -28721,7 +55570,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_LTE", + "name": "sampleCategory_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28733,7 +55582,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_EQUAL", + "name": "sampleClass_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28745,7 +55594,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_GT", + "name": "sampleClass_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -28757,7 +55606,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_GTE", + "name": "sampleClass_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28769,7 +55618,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_LT", + "name": "sampleClass_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -28781,7 +55630,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_LTE", + "name": "sampleClass_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28793,7 +55642,7 @@ "deprecationReason": null }, { - "name": "requestJson_EQUAL", + "name": "sampleClass_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28805,7 +55654,7 @@ "deprecationReason": null }, { - "name": "requestJson_GT", + "name": "sampleClass_GT", "description": null, "type": { "kind": "SCALAR", @@ -28817,7 +55666,7 @@ "deprecationReason": null }, { - "name": "requestJson_GTE", + "name": "sampleClass_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28829,7 +55678,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_EQUAL", + "name": "sampleClass_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28841,7 +55690,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_GT", + "name": "sampleClass_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -28853,7 +55702,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_GTE", + "name": "sampleClass_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28865,7 +55714,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_LT", + "name": "sampleClass_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -28877,7 +55726,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_LTE", + "name": "sampleClass_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28889,7 +55738,7 @@ "deprecationReason": null }, { - "name": "requestJson_LT", + "name": "sampleClass_LT", "description": null, "type": { "kind": "SCALAR", @@ -28901,7 +55750,7 @@ "deprecationReason": null }, { - "name": "requestJson_LTE", + "name": "sampleClass_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28913,7 +55762,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_EQUAL", + "name": "sampleClass_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28925,7 +55774,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_GT", + "name": "sampleClass_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -28937,7 +55786,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_GTE", + "name": "sampleClass_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -28949,7 +55798,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_LT", + "name": "sampleClass_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -28961,7 +55810,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_LTE", + "name": "sampleClass_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -28973,7 +55822,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_EQUAL", + "name": "smileSampleId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -28985,7 +55834,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_GT", + "name": "smileSampleId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -28997,7 +55846,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_GTE", + "name": "smileSampleId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -29009,7 +55858,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_LT", + "name": "smileSampleId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -29021,7 +55870,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_LTE", + "name": "smileSampleId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -29033,7 +55882,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_EQUAL", + "name": "smileSampleId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -29045,7 +55894,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_GT", + "name": "smileSampleId_GT", "description": null, "type": { "kind": "SCALAR", @@ -29057,7 +55906,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_GTE", + "name": "smileSampleId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -29069,7 +55918,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_EQUAL", + "name": "smileSampleId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -29081,7 +55930,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_GT", + "name": "smileSampleId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -29093,7 +55942,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_GTE", + "name": "smileSampleId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -29105,7 +55954,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_LT", + "name": "smileSampleId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -29117,7 +55966,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_LTE", + "name": "smileSampleId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -29129,7 +55978,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LT", + "name": "smileSampleId_LT", "description": null, "type": { "kind": "SCALAR", @@ -29141,7 +55990,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LTE", + "name": "smileSampleId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -29153,7 +56002,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_EQUAL", + "name": "smileSampleId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -29165,7 +56014,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_GT", + "name": "smileSampleId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -29177,7 +56026,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_GTE", + "name": "smileSampleId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -29189,7 +56038,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_LT", + "name": "smileSampleId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -29201,7 +56050,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_LTE", + "name": "smileSampleId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -29211,121 +56060,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "strand_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "strand_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAliasIsAliasSamplesRelationship", + "description": null, + "fields": [ { - "name": "strand_AVERAGE_GTE", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_AVERAGE_LT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "strand_AVERAGE_LTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "strand_EQUAL", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_GT", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_GTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_LONGEST_EQUAL", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_LONGEST_GT", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -29333,19 +56231,30 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasOptions", + "description": null, + "fields": null, + "inputFields": [ { - "name": "strand_LONGEST_LT", + "name": "limit", "description": null, "type": { "kind": "SCALAR", @@ -29357,7 +56266,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_LTE", + "name": "offset", "description": null, "type": { "kind": "SCALAR", @@ -29369,109 +56278,147 @@ "deprecationReason": null }, { - "name": "strand_LT", - "description": null, + "name": "sort", + "description": "Specify one or more SampleAliasSort objects to sort SampleAliases by. The sorts will be applied in the order in which they are arranged in the array.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasSort", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasRelationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "strand_LTE", + "name": "isAliasSamples", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAliasSampleIsAliasSamplesAggregationSelection", + "description": null, + "fields": [ { - "name": "strand_SHORTEST_EQUAL", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_SHORTEST_GT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleAliasSampleIsAliasSamplesNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAliasSampleIsAliasSamplesNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "strand_SHORTEST_GTE", + "name": "datasource", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_SHORTEST_LT", + "name": "sampleCategory", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_SHORTEST_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataRequestsHasMetadataRelationship", - "description": null, - "fields": [ - { - "name": "cursor", + "name": "sampleClass", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -29479,7 +56426,7 @@ "deprecationReason": null }, { - "name": "node", + "name": "smileSampleId", "description": null, "args": [], "type": { @@ -29487,7 +56434,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Request", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -29502,16 +56449,28 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataUpdateConnectionInput", - "description": null, + "name": "SampleAliasSort", + "description": "Fields to sort SampleAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one SampleAliasSort object.", "fields": null, "inputFields": [ { - "name": "node", + "name": "namespace", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestUpdateInput", + "kind": "ENUM", + "name": "SortDirection", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -29525,12 +56484,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataUpdateFieldInput", + "name": "SampleAliasUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "isAliasSamples", "description": null, "type": { "kind": "LIST", @@ -29540,7 +56499,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", + "name": "SampleAliasIsAliasSamplesUpdateFieldInput", "ofType": null } } @@ -29550,27 +56509,42 @@ "deprecationReason": null }, { - "name": "create", + "name": "namespace", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -29580,7 +56554,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataDeleteFieldInput", + "name": "SampleAliasWhere", "ofType": null } } @@ -29590,7 +56564,7 @@ "deprecationReason": null }, { - "name": "disconnect", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -29600,7 +56574,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataDisconnectFieldInput", + "name": "SampleAliasWhere", "ofType": null } } @@ -29610,11 +56584,11 @@ "deprecationReason": null }, { - "name": "update", + "name": "isAliasSamplesAggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataUpdateConnectionInput", + "name": "SampleAliasIsAliasSamplesAggregateInput", "ofType": null }, "defaultValue": null, @@ -29622,34 +56596,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "isAliasSamplesConnection_ALL", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "name": "SampleAliasIsAliasSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataSort", - "description": "Fields to sort RequestMetadata by. The order in which sorts are applied is not guaranteed when specifying many fields in one RequestMetadataSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "igoRequestId", + "name": "isAliasSamplesConnection_NONE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -29657,11 +56620,11 @@ "deprecationReason": null }, { - "name": "importDate", + "name": "isAliasSamplesConnection_SINGLE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -29669,116 +56632,67 @@ "deprecationReason": null }, { - "name": "requestMetadataJson", + "name": "isAliasSamplesConnection_SOME", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "INPUT_OBJECT", + "name": "SampleAliasIsAliasSamplesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataStatusHasStatusStatusesAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", - "description": null, - "args": [], + "name": "isAliasSamples_ALL", + "description": "Return SampleAliases where all of the related Samples match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], + "name": "isAliasSamples_NONE", + "description": "Return SampleAliases where none of the related Samples match this filter", "type": { - "kind": "OBJECT", - "name": "RequestMetadataStatusHasStatusStatusesNodeAggregateSelection", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataStatusHasStatusStatusesNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "validationReport", - "description": null, - "args": [], + "name": "isAliasSamples_SINGLE", + "description": "Return SampleAliases where one of the related Samples match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", - "description": null, + "name": "isAliasSamples_SOME", + "description": "Return SampleAliases where some of the related Samples match this filter", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesUpdateFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "namespace", "description": null, "type": { "kind": "SCALAR", @@ -29790,7 +56704,7 @@ "deprecationReason": null }, { - "name": "importDate", + "name": "namespace_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -29802,7 +56716,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson", + "name": "namespace_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -29814,38 +56728,7 @@ "deprecationReason": null }, { - "name": "requestsHasMetadata", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataUpdateFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "AND", + "name": "namespace_IN", "description": null, "type": { "kind": "LIST", @@ -29854,8 +56737,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -29865,31 +56748,23 @@ "deprecationReason": null }, { - "name": "OR", + "name": "namespace_NOT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatusesAggregate", + "name": "namespace_NOT_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesAggregateInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -29897,11 +56772,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_ALL", + "name": "namespace_NOT_ENDS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -29909,23 +56784,31 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_NONE", + "name": "namespace_NOT_IN", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_SINGLE", + "name": "namespace_NOT_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -29933,11 +56816,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_SOME", + "name": "namespace_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -29945,11 +56828,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_ALL", - "description": "Return RequestMetadata where all of the related Statuses match this filter", + "name": "value", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -29957,11 +56840,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_NONE", - "description": "Return RequestMetadata where none of the related Statuses match this filter", + "name": "value_CONTAINS", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -29969,11 +56852,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_SINGLE", - "description": "Return RequestMetadata where one of the related Statuses match this filter", + "name": "value_ENDS_WITH", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -29981,19 +56864,27 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_SOME", - "description": "Return RequestMetadata where some of the related Statuses match this filter", + "name": "value_IN", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "value_NOT", "description": null, "type": { "kind": "SCALAR", @@ -30005,7 +56896,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_CONTAINS", + "name": "value_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -30017,7 +56908,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_ENDS_WITH", + "name": "value_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -30029,7 +56920,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_IN", + "name": "value_NOT_IN", "description": null, "type": { "kind": "LIST", @@ -30049,7 +56940,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT", + "name": "value_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -30061,7 +56952,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT_CONTAINS", + "name": "value_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -30071,69 +56962,197 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleAliasesConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleAliasEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "igoRequestId_NOT_ENDS_WITH", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_NOT_IN", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleCohortCohortsHasCohortSampleAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_NOT_STARTS_WITH", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SampleCohortCohortsHasCohortSampleNodeAggregateSelection", "ofType": null }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleCohortCohortsHasCohortSampleNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "cohortId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleAggregateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleAggregateInput", + "ofType": null + } + } + }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_STARTS_WITH", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "count", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -30141,11 +57160,11 @@ "deprecationReason": null }, { - "name": "importDate_CONTAINS", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -30153,11 +57172,11 @@ "deprecationReason": null }, { - "name": "importDate_ENDS_WITH", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -30165,31 +57184,11 @@ "deprecationReason": null }, { - "name": "importDate_IN", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "importDate_NOT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -30197,11 +57196,11 @@ "deprecationReason": null }, { - "name": "importDate_NOT_CONTAINS", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -30209,19 +57208,30 @@ "deprecationReason": null }, { - "name": "importDate_NOT_ENDS_WITH", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_NOT_IN", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -30230,8 +57240,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CohortConnectInput", "ofType": null } } @@ -30241,67 +57251,120 @@ "deprecationReason": null }, { - "name": "importDate_NOT_STARTS_WITH", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CohortConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleCohortsHasCohortSampleConnection", + "description": null, + "fields": [ { - "name": "importDate_STARTS_WITH", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleCohortsHasCohortSampleRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataJson", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataJson_CONTAINS", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestMetadataJson_ENDS_WITH", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CohortSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestMetadataJson_IN", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -30310,8 +57373,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", "ofType": null } } @@ -30321,23 +57384,31 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_NOT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataJson_NOT_CONTAINS", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CohortWhere", "ofType": null }, "defaultValue": null, @@ -30345,43 +57416,61 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_NOT_ENDS_WITH", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CohortWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestMetadataJson_NOT_IN", + "name": "node", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CohortCreateInput", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestMetadataJson_NOT_STARTS_WITH", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CohortDeleteInput", "ofType": null }, "defaultValue": null, @@ -30389,23 +57478,34 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_STARTS_WITH", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestsHasMetadataAggregate", + "name": "disconnect", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataAggregateInput", + "name": "CohortDisconnectInput", "ofType": null }, "defaultValue": null, @@ -30413,71 +57513,125 @@ "deprecationReason": null }, { - "name": "requestsHasMetadataConnection_ALL", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "name": "SampleCohortsHasCohortSampleConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestsHasMetadataConnection_NONE", + "name": "connect", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadataConnection_SINGLE", + "name": "create", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "requestsHasMetadataConnection_SOME", + "name": "AND", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRequestsHasMetadataConnectionWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadata_ALL", - "description": "Return RequestMetadata where all of the related Requests match this filter", + "name": "OR", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasMetadata_NONE", - "description": "Return RequestMetadata where none of the related Requests match this filter", + "name": "cohortId_AVERAGE_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -30485,11 +57639,11 @@ "deprecationReason": null }, { - "name": "requestsHasMetadata_SINGLE", - "description": "Return RequestMetadata where one of the related Requests match this filter", + "name": "cohortId_AVERAGE_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -30497,34 +57651,23 @@ "deprecationReason": null }, { - "name": "requestsHasMetadata_SOME", - "description": "Return RequestMetadata where some of the related Requests match this filter", + "name": "cohortId_AVERAGE_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestOptions", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "limit", + "name": "cohortId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -30532,11 +57675,11 @@ "deprecationReason": null }, { - "name": "offset", + "name": "cohortId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -30544,160 +57687,79 @@ "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more RequestSort objects to sort Requests by. The sorts will be applied in the order in which they are arranged in the array.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestProjectProjectsHasRequestAggregationSelection", - "description": null, - "fields": [ - { - "name": "count", + "name": "cohortId_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "cohortId_GT", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "RequestProjectProjectsHasRequestNodeAggregateSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestProjectProjectsHasRequestNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "igoProjectId", + "name": "cohortId_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "cohortId_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "cohortId_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "cohortId_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "cohortId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -30709,7 +57771,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "cohortId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -30721,7 +57783,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "cohortId_LT", "description": null, "type": { "kind": "SCALAR", @@ -30733,7 +57795,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "cohortId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -30745,7 +57807,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "cohortId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -30757,54 +57819,47 @@ "deprecationReason": null }, { - "name": "node", + "name": "cohortId_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "cohortId_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "cohortId_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectConnectWhere", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -30818,43 +57873,19 @@ }, { "kind": "OBJECT", - "name": "RequestProjectsHasRequestConnection", + "name": "SampleCohortsHasCohortSampleRelationship", "description": null, "fields": [ { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestProjectsHasRequestRelationship", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", + "name": "cursor", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -30862,15 +57893,15 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "node", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Cohort", "ofType": null } }, @@ -30885,7 +57916,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionSort", + "name": "SampleCohortsHasCohortSampleUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ @@ -30894,7 +57925,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectSort", + "name": "CohortUpdateInput", "ofType": null }, "defaultValue": null, @@ -30908,12 +57939,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "name": "SampleCohortsHasCohortSampleUpdateFieldInput", "description": null, "fields": null, "inputFields": [ { - "name": "AND", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -30923,7 +57954,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "name": "SampleCohortsHasCohortSampleConnectFieldInput", "ofType": null } } @@ -30933,7 +57964,7 @@ "deprecationReason": null }, { - "name": "OR", + "name": "create", "description": null, "type": { "kind": "LIST", @@ -30943,7 +57974,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "name": "SampleCohortsHasCohortSampleCreateFieldInput", "ofType": null } } @@ -30953,108 +57984,51 @@ "deprecationReason": null }, { - "name": "node", + "name": "delete", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node_NOT", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "node", + "name": "disconnect", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectCreateInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleDisconnectFieldInput", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "delete", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectDeleteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "disconnect", + "name": "update", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectDisconnectInput", + "name": "SampleCohortsHasCohortSampleUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -31066,7 +58040,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "name": "SampleCohortsHasCohortSampleConnectionWhere", "ofType": null }, "defaultValue": null, @@ -31080,12 +58054,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestFieldInput", + "name": "SampleConnectInput", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "cohortsHasCohortSample", "description": null, "type": { "kind": "LIST", @@ -31095,7 +58069,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectFieldInput", + "name": "SampleCohortsHasCohortSampleConnectFieldInput", "ofType": null } } @@ -31105,7 +58079,7 @@ "deprecationReason": null }, { - "name": "create", + "name": "hasMetadataSampleMetadata", "description": null, "type": { "kind": "LIST", @@ -31115,7 +58089,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestCreateFieldInput", + "name": "SampleHasMetadataSampleMetadataConnectFieldInput", "ofType": null } } @@ -31123,20 +58097,9 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "hasTempoTempos", "description": null, "type": { "kind": "LIST", @@ -31146,7 +58109,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestNodeAggregationWhereInput", + "name": "SampleHasTempoTemposConnectFieldInput", "ofType": null } } @@ -31156,7 +58119,7 @@ "deprecationReason": null }, { - "name": "OR", + "name": "patientsHasSample", "description": null, "type": { "kind": "LIST", @@ -31166,7 +58129,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestNodeAggregationWhereInput", + "name": "SamplePatientsHasSampleConnectFieldInput", "ofType": null } } @@ -31176,71 +58139,89 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "igoProjectId_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "igoProjectId_AVERAGE_GTE", + "name": "requestsHasSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_LT", + "name": "sampleAliasesIsAlias", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_AVERAGE_LTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_EQUAL", + "name": "cohortsHasCohortSample", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleFieldInput", "ofType": null }, "defaultValue": null, @@ -31248,23 +58229,27 @@ "deprecationReason": null }, { - "name": "igoProjectId_GT", + "name": "datasource", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_GTE", + "name": "hasMetadataSampleMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataFieldInput", "ofType": null }, "defaultValue": null, @@ -31272,11 +58257,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_EQUAL", + "name": "hasTempoTempos", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposFieldInput", "ofType": null }, "defaultValue": null, @@ -31284,11 +58269,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GT", + "name": "patientsHasSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleFieldInput", "ofType": null }, "defaultValue": null, @@ -31296,11 +58281,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GTE", + "name": "requestsHasSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleFieldInput", "ofType": null }, "defaultValue": null, @@ -31308,23 +58293,27 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_LT", + "name": "revisable", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_LTE", + "name": "sampleAliasesIsAlias", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasFieldInput", "ofType": null }, "defaultValue": null, @@ -31332,235 +58321,411 @@ "deprecationReason": null }, { - "name": "igoProjectId_LT", + "name": "sampleCategory", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_LTE", + "name": "sampleClass", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_EQUAL", + "name": "smileSampleId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_SHORTEST_GT", + "name": "cohortsHasCohortSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_GTE", + "name": "hasMetadataSampleMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_LT", + "name": "hasTempoTempos", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_LTE", + "name": "patientsHasSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_EQUAL", + "name": "requestsHasSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_GT", + "name": "sampleAliasesIsAlias", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "namespace_AVERAGE_GTE", + "name": "cohortsHasCohortSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_LT", + "name": "hasMetadataSampleMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_LTE", + "name": "hasTempoTempos", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_EQUAL", + "name": "patientsHasSample", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_GT", + "name": "requestsHasSample", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_GTE", + "name": "sampleAliasesIsAlias", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleEdge", + "description": null, + "fields": [ { - "name": "namespace_LONGEST_EQUAL", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_GT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "namespace_LONGEST_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_LT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_LONGEST_LTE", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -31572,7 +58737,7 @@ "deprecationReason": null }, { - "name": "namespace_LT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -31584,7 +58749,7 @@ "deprecationReason": null }, { - "name": "namespace_LTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -31596,7 +58761,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_EQUAL", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -31608,7 +58773,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GT", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -31620,35 +58785,54 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "namespace_SHORTEST_LT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_SHORTEST_LTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataConnectWhere", "ofType": null }, "defaultValue": null, @@ -31662,27 +58846,35 @@ }, { "kind": "OBJECT", - "name": "RequestProjectsHasRequestRelationship", + "name": "SampleHasMetadataSampleMetadataConnection", "description": null, "fields": [ { - "name": "cursor", + "name": "edges", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleHasMetadataSampleMetadataRelationship", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "pageInfo", "description": null, "args": [], "type": { @@ -31690,7 +58882,23 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Project", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -31705,7 +58913,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestUpdateConnectionInput", + "name": "SampleHasMetadataSampleMetadataConnectionSort", "description": null, "fields": null, "inputFields": [ @@ -31714,7 +58922,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ProjectUpdateInput", + "name": "SampleMetadataSort", "ofType": null }, "defaultValue": null, @@ -31728,12 +58936,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestUpdateFieldInput", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -31743,7 +58951,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectFieldInput", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", "ofType": null } } @@ -31753,7 +58961,7 @@ "deprecationReason": null }, { - "name": "create", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -31763,7 +58971,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestCreateFieldInput", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", "ofType": null } } @@ -31773,51 +58981,73 @@ "deprecationReason": null }, { - "name": "delete", + "name": "node", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDeleteFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "node_NOT", "description": null, "type": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDisconnectFieldInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataCreateInput", + "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "update", + "name": "delete", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestUpdateConnectionInput", + "name": "SampleMetadataDeleteInput", "ofType": null }, "defaultValue": null, @@ -31829,7 +59059,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -31843,32 +59073,47 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestRelationInput", + "name": "SampleHasMetadataSampleMetadataDisconnectFieldInput", "description": null, "fields": null, "inputFields": [ { - "name": "hasMetadataRequestMetadata", + "name": "disconnect", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataCreateFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDisconnectInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamples", + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -31878,7 +59123,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", + "name": "SampleHasMetadataSampleMetadataConnectFieldInput", "ofType": null } } @@ -31888,7 +59133,7 @@ "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "create", "description": null, "type": { "kind": "LIST", @@ -31898,7 +59143,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestCreateFieldInput", + "name": "SampleHasMetadataSampleMetadataCreateFieldInput", "ofType": null } } @@ -31913,229 +59158,129 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection", + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", "description": null, - "fields": [ - { - "name": "igoRequestId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": null, + "inputFields": [ { - "name": "importDate", + "name": "AND", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataJson", + "name": "OR", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestSampleHasSampleSamplesAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "additionalProperties_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "additionalProperties_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "RequestSampleHasSampleSamplesNodeAggregateSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestSampleHasSampleSamplesNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "datasource", + "name": "additionalProperties_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory", + "name": "additionalProperties_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "additionalProperties_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId", + "name": "additionalProperties_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestSort", - "description": "Fields to sort Requests by. The order in which sorts are applied is not guaranteed when specifying many fields in one RequestSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "bicAnalysis", + "name": "additionalProperties_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32143,11 +59288,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails", + "name": "additionalProperties_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32155,11 +59300,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "additionalProperties_LONGEST_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32167,11 +59312,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "additionalProperties_LONGEST_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32179,11 +59324,11 @@ "deprecationReason": null }, { - "name": "genePanel", + "name": "additionalProperties_LONGEST_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32191,11 +59336,11 @@ "deprecationReason": null }, { - "name": "igoProjectId", + "name": "additionalProperties_LONGEST_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32203,11 +59348,11 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "additionalProperties_LONGEST_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32215,11 +59360,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "additionalProperties_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32227,11 +59372,11 @@ "deprecationReason": null }, { - "name": "investigatorName", + "name": "additionalProperties_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32239,11 +59384,11 @@ "deprecationReason": null }, { - "name": "isCmoRequest", + "name": "additionalProperties_SHORTEST_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32251,11 +59396,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "additionalProperties_SHORTEST_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32263,11 +59408,11 @@ "deprecationReason": null }, { - "name": "labHeadName", + "name": "additionalProperties_SHORTEST_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32275,11 +59420,11 @@ "deprecationReason": null }, { - "name": "libraryType", + "name": "additionalProperties_SHORTEST_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32287,11 +59432,11 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "additionalProperties_SHORTEST_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32299,11 +59444,11 @@ "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "baitSet_AVERAGE_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32311,11 +59456,11 @@ "deprecationReason": null }, { - "name": "piEmail", + "name": "baitSet_AVERAGE_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32323,11 +59468,11 @@ "deprecationReason": null }, { - "name": "projectManagerName", + "name": "baitSet_AVERAGE_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32335,11 +59480,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "baitSet_AVERAGE_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32347,11 +59492,11 @@ "deprecationReason": null }, { - "name": "requestJson", + "name": "baitSet_AVERAGE_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32359,11 +59504,11 @@ "deprecationReason": null }, { - "name": "smileRequestId", + "name": "baitSet_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -32371,34 +59516,23 @@ "deprecationReason": null }, { - "name": "strand", + "name": "baitSet_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "bicAnalysis", + "name": "baitSet_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32406,11 +59540,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails", + "name": "baitSet_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32418,11 +59552,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "baitSet_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32430,11 +59564,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "baitSet_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32442,11 +59576,11 @@ "deprecationReason": null }, { - "name": "genePanel", + "name": "baitSet_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32454,51 +59588,35 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadata", + "name": "baitSet_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasSampleSamples", + "name": "baitSet_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "baitSet_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32506,11 +59624,11 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "baitSet_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32518,11 +59636,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "baitSet_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32530,11 +59648,11 @@ "deprecationReason": null }, { - "name": "investigatorName", + "name": "baitSet_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32542,11 +59660,11 @@ "deprecationReason": null }, { - "name": "isCmoRequest", + "name": "baitSet_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32554,11 +59672,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "baitSet_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32566,11 +59684,11 @@ "deprecationReason": null }, { - "name": "labHeadName", + "name": "cfDNA2dBarcode_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32578,11 +59696,11 @@ "deprecationReason": null }, { - "name": "libraryType", + "name": "cfDNA2dBarcode_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32590,11 +59708,11 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "cfDNA2dBarcode_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32602,11 +59720,11 @@ "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "cfDNA2dBarcode_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32614,11 +59732,11 @@ "deprecationReason": null }, { - "name": "piEmail", + "name": "cfDNA2dBarcode_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32626,23 +59744,19 @@ "deprecationReason": null }, { - "name": "pooledNormals", + "name": "cfDNA2dBarcode_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pooledNormals_POP", + "name": "cfDNA2dBarcode_GT", "description": null, "type": { "kind": "SCALAR", @@ -32654,27 +59768,23 @@ "deprecationReason": null }, { - "name": "pooledNormals_PUSH", + "name": "cfDNA2dBarcode_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName", + "name": "cfDNA2dBarcode_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32682,31 +59792,23 @@ "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "cfDNA2dBarcode_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "cfDNA2dBarcode_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32714,11 +59816,11 @@ "deprecationReason": null }, { - "name": "requestJson", + "name": "cfDNA2dBarcode_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32726,11 +59828,11 @@ "deprecationReason": null }, { - "name": "smileRequestId", + "name": "cfDNA2dBarcode_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32738,74 +59840,47 @@ "deprecationReason": null }, { - "name": "strand", + "name": "cfDNA2dBarcode_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "cfDNA2dBarcode_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "cfDNA2dBarcode_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bicAnalysis", + "name": "cfDNA2dBarcode_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32813,11 +59888,11 @@ "deprecationReason": null }, { - "name": "bicAnalysis_NOT", + "name": "cfDNA2dBarcode_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32825,11 +59900,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails", + "name": "cfDNA2dBarcode_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32837,11 +59912,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_CONTAINS", + "name": "cfDNA2dBarcode_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32849,11 +59924,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_ENDS_WITH", + "name": "cmoInfoIgoId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32861,31 +59936,23 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_IN", + "name": "cmoInfoIgoId_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_NOT", + "name": "cmoInfoIgoId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32893,11 +59960,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_NOT_CONTAINS", + "name": "cmoInfoIgoId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32905,11 +59972,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_NOT_ENDS_WITH", + "name": "cmoInfoIgoId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -32917,31 +59984,23 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_NOT_IN", + "name": "cmoInfoIgoId_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_NOT_STARTS_WITH", + "name": "cmoInfoIgoId_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32949,11 +60008,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_STARTS_WITH", + "name": "cmoInfoIgoId_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32961,11 +60020,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "cmoInfoIgoId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32973,11 +60032,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_CONTAINS", + "name": "cmoInfoIgoId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32985,11 +60044,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_ENDS_WITH", + "name": "cmoInfoIgoId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -32997,31 +60056,23 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_IN", + "name": "cmoInfoIgoId_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_NOT", + "name": "cmoInfoIgoId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33029,11 +60080,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_NOT_CONTAINS", + "name": "cmoInfoIgoId_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33041,11 +60092,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_NOT_ENDS_WITH", + "name": "cmoInfoIgoId_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33053,31 +60104,23 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_NOT_IN", + "name": "cmoInfoIgoId_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_NOT_STARTS_WITH", + "name": "cmoInfoIgoId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33085,11 +60128,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_STARTS_WITH", + "name": "cmoInfoIgoId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33097,11 +60140,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "cmoInfoIgoId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33109,11 +60152,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_CONTAINS", + "name": "cmoInfoIgoId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33121,11 +60164,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_ENDS_WITH", + "name": "cmoPatientId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33133,31 +60176,23 @@ "deprecationReason": null }, { - "name": "dataAnalystName_IN", + "name": "cmoPatientId_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_NOT", + "name": "cmoPatientId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33165,11 +60200,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_NOT_CONTAINS", + "name": "cmoPatientId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33177,11 +60212,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_NOT_ENDS_WITH", + "name": "cmoPatientId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33189,31 +60224,23 @@ "deprecationReason": null }, { - "name": "dataAnalystName_NOT_IN", + "name": "cmoPatientId_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_NOT_STARTS_WITH", + "name": "cmoPatientId_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33221,11 +60248,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_STARTS_WITH", + "name": "cmoPatientId_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33233,11 +60260,11 @@ "deprecationReason": null }, { - "name": "genePanel", + "name": "cmoPatientId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33245,11 +60272,11 @@ "deprecationReason": null }, { - "name": "genePanel_CONTAINS", + "name": "cmoPatientId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33257,11 +60284,11 @@ "deprecationReason": null }, { - "name": "genePanel_ENDS_WITH", + "name": "cmoPatientId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33269,31 +60296,23 @@ "deprecationReason": null }, { - "name": "genePanel_IN", + "name": "cmoPatientId_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_NOT", + "name": "cmoPatientId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33301,11 +60320,11 @@ "deprecationReason": null }, { - "name": "genePanel_NOT_CONTAINS", + "name": "cmoPatientId_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33313,11 +60332,11 @@ "deprecationReason": null }, { - "name": "genePanel_NOT_ENDS_WITH", + "name": "cmoPatientId_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33325,31 +60344,23 @@ "deprecationReason": null }, { - "name": "genePanel_NOT_IN", + "name": "cmoPatientId_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_NOT_STARTS_WITH", + "name": "cmoPatientId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33357,11 +60368,11 @@ "deprecationReason": null }, { - "name": "genePanel_STARTS_WITH", + "name": "cmoPatientId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33369,11 +60380,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadataAggregate", + "name": "cmoPatientId_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33381,11 +60392,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadataConnection_ALL", + "name": "cmoPatientId_SHORTEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33393,11 +60404,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadataConnection_NONE", + "name": "cmoSampleIdFields_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33405,11 +60416,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadataConnection_SINGLE", + "name": "cmoSampleIdFields_AVERAGE_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33417,11 +60428,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadataConnection_SOME", + "name": "cmoSampleIdFields_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33429,11 +60440,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadata_ALL", - "description": "Return Requests where all of the related RequestMetadata match this filter", + "name": "cmoSampleIdFields_AVERAGE_LT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33441,11 +60452,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadata_NONE", - "description": "Return Requests where none of the related RequestMetadata match this filter", + "name": "cmoSampleIdFields_AVERAGE_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33453,11 +60464,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadata_SINGLE", - "description": "Return Requests where one of the related RequestMetadata match this filter", + "name": "cmoSampleIdFields_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -33465,11 +60476,11 @@ "deprecationReason": null }, { - "name": "hasMetadataRequestMetadata_SOME", - "description": "Return Requests where some of the related RequestMetadata match this filter", + "name": "cmoSampleIdFields_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33477,11 +60488,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamplesAggregate", + "name": "cmoSampleIdFields_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33489,11 +60500,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamplesConnection_ALL", + "name": "cmoSampleIdFields_LONGEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33501,11 +60512,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamplesConnection_NONE", + "name": "cmoSampleIdFields_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33513,11 +60524,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamplesConnection_SINGLE", + "name": "cmoSampleIdFields_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33525,11 +60536,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamplesConnection_SOME", + "name": "cmoSampleIdFields_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33537,11 +60548,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamples_ALL", - "description": "Return Requests where all of the related Samples match this filter", + "name": "cmoSampleIdFields_LONGEST_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33549,11 +60560,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamples_NONE", - "description": "Return Requests where none of the related Samples match this filter", + "name": "cmoSampleIdFields_LT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33561,11 +60572,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamples_SINGLE", - "description": "Return Requests where one of the related Samples match this filter", + "name": "cmoSampleIdFields_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33573,11 +60584,11 @@ "deprecationReason": null }, { - "name": "hasSampleSamples_SOME", - "description": "Return Requests where some of the related Samples match this filter", + "name": "cmoSampleIdFields_SHORTEST_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33585,11 +60596,11 @@ "deprecationReason": null }, { - "name": "igoProjectId", + "name": "cmoSampleIdFields_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33597,11 +60608,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_CONTAINS", + "name": "cmoSampleIdFields_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33609,11 +60620,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_ENDS_WITH", + "name": "cmoSampleIdFields_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33621,31 +60632,23 @@ "deprecationReason": null }, { - "name": "igoProjectId_IN", + "name": "cmoSampleIdFields_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_NOT", + "name": "cmoSampleName_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33653,11 +60656,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_NOT_CONTAINS", + "name": "cmoSampleName_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33665,11 +60668,11 @@ "deprecationReason": null }, { - "name": "igoProjectId_NOT_ENDS_WITH", + "name": "cmoSampleName_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33677,31 +60680,23 @@ "deprecationReason": null }, { - "name": "igoProjectId_NOT_IN", + "name": "cmoSampleName_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_NOT_STARTS_WITH", + "name": "cmoSampleName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33709,7 +60704,7 @@ "deprecationReason": null }, { - "name": "igoProjectId_STARTS_WITH", + "name": "cmoSampleName_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -33721,11 +60716,11 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "cmoSampleName_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33733,11 +60728,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_CONTAINS", + "name": "cmoSampleName_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33745,11 +60740,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_ENDS_WITH", + "name": "cmoSampleName_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33757,31 +60752,23 @@ "deprecationReason": null }, { - "name": "igoRequestId_IN", + "name": "cmoSampleName_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_NOT", + "name": "cmoSampleName_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33789,11 +60776,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT_CONTAINS", + "name": "cmoSampleName_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33801,11 +60788,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT_ENDS_WITH", + "name": "cmoSampleName_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33813,31 +60800,23 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT_IN", + "name": "cmoSampleName_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_NOT_STARTS_WITH", + "name": "cmoSampleName_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33845,11 +60824,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_STARTS_WITH", + "name": "cmoSampleName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33857,11 +60836,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "cmoSampleName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33869,11 +60848,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_CONTAINS", + "name": "cmoSampleName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33881,11 +60860,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_ENDS_WITH", + "name": "cmoSampleName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33893,31 +60872,35 @@ "deprecationReason": null }, { - "name": "investigatorEmail_IN", + "name": "cmoSampleName_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "collectionYear_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_NOT", + "name": "collectionYear_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33925,11 +60908,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_NOT_CONTAINS", + "name": "collectionYear_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33937,11 +60920,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_NOT_ENDS_WITH", + "name": "collectionYear_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -33949,27 +60932,19 @@ "deprecationReason": null }, { - "name": "investigatorEmail_NOT_IN", + "name": "collectionYear_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail_NOT_STARTS_WITH", + "name": "collectionYear_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -33981,11 +60956,11 @@ "deprecationReason": null }, { - "name": "investigatorEmail_STARTS_WITH", + "name": "collectionYear_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -33993,11 +60968,11 @@ "deprecationReason": null }, { - "name": "investigatorName", + "name": "collectionYear_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34005,11 +60980,11 @@ "deprecationReason": null }, { - "name": "investigatorName_CONTAINS", + "name": "collectionYear_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34017,11 +60992,11 @@ "deprecationReason": null }, { - "name": "investigatorName_ENDS_WITH", + "name": "collectionYear_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34029,31 +61004,23 @@ "deprecationReason": null }, { - "name": "investigatorName_IN", + "name": "collectionYear_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_NOT", + "name": "collectionYear_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34061,11 +61028,11 @@ "deprecationReason": null }, { - "name": "investigatorName_NOT_CONTAINS", + "name": "collectionYear_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34073,11 +61040,11 @@ "deprecationReason": null }, { - "name": "investigatorName_NOT_ENDS_WITH", + "name": "collectionYear_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34085,31 +61052,23 @@ "deprecationReason": null }, { - "name": "investigatorName_NOT_IN", + "name": "collectionYear_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName_NOT_STARTS_WITH", + "name": "collectionYear_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34117,11 +61076,11 @@ "deprecationReason": null }, { - "name": "investigatorName_STARTS_WITH", + "name": "collectionYear_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34129,11 +61088,11 @@ "deprecationReason": null }, { - "name": "isCmoRequest", + "name": "collectionYear_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34141,11 +61100,11 @@ "deprecationReason": null }, { - "name": "isCmoRequest_NOT", + "name": "collectionYear_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34153,11 +61112,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "collectionYear_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34165,11 +61124,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_CONTAINS", + "name": "genePanel_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34177,11 +61136,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_ENDS_WITH", + "name": "genePanel_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34189,31 +61148,23 @@ "deprecationReason": null }, { - "name": "labHeadEmail_IN", + "name": "genePanel_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail_NOT", + "name": "genePanel_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34221,11 +61172,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_NOT_CONTAINS", + "name": "genePanel_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34233,7 +61184,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_NOT_ENDS_WITH", + "name": "genePanel_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -34245,31 +61196,23 @@ "deprecationReason": null }, { - "name": "labHeadEmail_NOT_IN", + "name": "genePanel_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail_NOT_STARTS_WITH", + "name": "genePanel_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34277,11 +61220,11 @@ "deprecationReason": null }, { - "name": "labHeadEmail_STARTS_WITH", + "name": "genePanel_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34289,11 +61232,11 @@ "deprecationReason": null }, { - "name": "labHeadName", + "name": "genePanel_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34301,11 +61244,11 @@ "deprecationReason": null }, { - "name": "labHeadName_CONTAINS", + "name": "genePanel_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34313,11 +61256,11 @@ "deprecationReason": null }, { - "name": "labHeadName_ENDS_WITH", + "name": "genePanel_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34325,31 +61268,23 @@ "deprecationReason": null }, { - "name": "labHeadName_IN", + "name": "genePanel_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_NOT", + "name": "genePanel_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34357,11 +61292,11 @@ "deprecationReason": null }, { - "name": "labHeadName_NOT_CONTAINS", + "name": "genePanel_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34369,11 +61304,11 @@ "deprecationReason": null }, { - "name": "labHeadName_NOT_ENDS_WITH", + "name": "genePanel_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34381,31 +61316,23 @@ "deprecationReason": null }, { - "name": "labHeadName_NOT_IN", + "name": "genePanel_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_NOT_STARTS_WITH", + "name": "genePanel_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34413,11 +61340,11 @@ "deprecationReason": null }, { - "name": "labHeadName_STARTS_WITH", + "name": "genePanel_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34425,11 +61352,11 @@ "deprecationReason": null }, { - "name": "libraryType", + "name": "genePanel_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34437,11 +61364,11 @@ "deprecationReason": null }, { - "name": "libraryType_CONTAINS", + "name": "igoRequestId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34449,11 +61376,11 @@ "deprecationReason": null }, { - "name": "libraryType_ENDS_WITH", + "name": "igoRequestId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34461,27 +61388,23 @@ "deprecationReason": null }, { - "name": "libraryType_IN", + "name": "igoRequestId_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_NOT", + "name": "igoRequestId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34489,11 +61412,11 @@ "deprecationReason": null }, { - "name": "libraryType_NOT_CONTAINS", + "name": "igoRequestId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34501,7 +61424,7 @@ "deprecationReason": null }, { - "name": "libraryType_NOT_ENDS_WITH", + "name": "igoRequestId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -34513,27 +61436,23 @@ "deprecationReason": null }, { - "name": "libraryType_NOT_IN", + "name": "igoRequestId_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_NOT_STARTS_WITH", + "name": "igoRequestId_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34541,11 +61460,11 @@ "deprecationReason": null }, { - "name": "libraryType_STARTS_WITH", + "name": "igoRequestId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34553,11 +61472,11 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "igoRequestId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34565,11 +61484,11 @@ "deprecationReason": null }, { - "name": "namespace_CONTAINS", + "name": "igoRequestId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34577,11 +61496,11 @@ "deprecationReason": null }, { - "name": "namespace_ENDS_WITH", + "name": "igoRequestId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34589,31 +61508,23 @@ "deprecationReason": null }, { - "name": "namespace_IN", + "name": "igoRequestId_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT", + "name": "igoRequestId_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34621,11 +61532,11 @@ "deprecationReason": null }, { - "name": "namespace_NOT_CONTAINS", + "name": "igoRequestId_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34633,11 +61544,11 @@ "deprecationReason": null }, { - "name": "namespace_NOT_ENDS_WITH", + "name": "igoRequestId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34645,31 +61556,23 @@ "deprecationReason": null }, { - "name": "namespace_NOT_IN", + "name": "igoRequestId_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT_STARTS_WITH", + "name": "igoRequestId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34677,11 +61580,11 @@ "deprecationReason": null }, { - "name": "namespace_STARTS_WITH", + "name": "igoRequestId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34689,11 +61592,11 @@ "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "igoRequestId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34701,11 +61604,11 @@ "deprecationReason": null }, { - "name": "otherContactEmails_CONTAINS", + "name": "importDate_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34713,11 +61616,11 @@ "deprecationReason": null }, { - "name": "otherContactEmails_ENDS_WITH", + "name": "importDate_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34725,31 +61628,23 @@ "deprecationReason": null }, { - "name": "otherContactEmails_IN", + "name": "importDate_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_NOT", + "name": "importDate_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34757,11 +61652,11 @@ "deprecationReason": null }, { - "name": "otherContactEmails_NOT_CONTAINS", + "name": "importDate_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34769,7 +61664,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_NOT_ENDS_WITH", + "name": "importDate_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -34781,31 +61676,23 @@ "deprecationReason": null }, { - "name": "otherContactEmails_NOT_IN", + "name": "importDate_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails_NOT_STARTS_WITH", + "name": "importDate_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34813,11 +61700,11 @@ "deprecationReason": null }, { - "name": "otherContactEmails_STARTS_WITH", + "name": "importDate_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34825,11 +61712,11 @@ "deprecationReason": null }, { - "name": "piEmail", + "name": "importDate_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34837,11 +61724,11 @@ "deprecationReason": null }, { - "name": "piEmail_CONTAINS", + "name": "importDate_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34849,11 +61736,11 @@ "deprecationReason": null }, { - "name": "piEmail_ENDS_WITH", + "name": "importDate_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34861,31 +61748,23 @@ "deprecationReason": null }, { - "name": "piEmail_IN", + "name": "importDate_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_NOT", + "name": "importDate_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34893,11 +61772,11 @@ "deprecationReason": null }, { - "name": "piEmail_NOT_CONTAINS", + "name": "importDate_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34905,11 +61784,11 @@ "deprecationReason": null }, { - "name": "piEmail_NOT_ENDS_WITH", + "name": "importDate_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34917,31 +61796,23 @@ "deprecationReason": null }, { - "name": "piEmail_NOT_IN", + "name": "importDate_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail_NOT_STARTS_WITH", + "name": "importDate_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34949,11 +61820,11 @@ "deprecationReason": null }, { - "name": "piEmail_STARTS_WITH", + "name": "importDate_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -34961,27 +61832,23 @@ "deprecationReason": null }, { - "name": "pooledNormals", + "name": "importDate_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pooledNormals_INCLUDES", + "name": "investigatorSampleId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -34989,27 +61856,23 @@ "deprecationReason": null }, { - "name": "pooledNormals_NOT", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "name": "investigatorSampleId_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pooledNormals_NOT_INCLUDES", + "name": "investigatorSampleId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35017,11 +61880,11 @@ "deprecationReason": null }, { - "name": "projectManagerName", + "name": "investigatorSampleId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35029,11 +61892,11 @@ "deprecationReason": null }, { - "name": "projectManagerName_CONTAINS", + "name": "investigatorSampleId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35041,7 +61904,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_ENDS_WITH", + "name": "investigatorSampleId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -35053,31 +61916,23 @@ "deprecationReason": null }, { - "name": "projectManagerName_IN", + "name": "investigatorSampleId_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_NOT", + "name": "investigatorSampleId_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35085,11 +61940,11 @@ "deprecationReason": null }, { - "name": "projectManagerName_NOT_CONTAINS", + "name": "investigatorSampleId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35097,11 +61952,11 @@ "deprecationReason": null }, { - "name": "projectManagerName_NOT_ENDS_WITH", + "name": "investigatorSampleId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35109,31 +61964,23 @@ "deprecationReason": null }, { - "name": "projectManagerName_NOT_IN", + "name": "investigatorSampleId_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName_NOT_STARTS_WITH", + "name": "investigatorSampleId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35141,11 +61988,11 @@ "deprecationReason": null }, { - "name": "projectManagerName_STARTS_WITH", + "name": "investigatorSampleId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35153,11 +62000,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequestAggregate", + "name": "investigatorSampleId_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35165,11 +62012,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequestConnection_ALL", + "name": "investigatorSampleId_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35177,11 +62024,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequestConnection_NONE", + "name": "investigatorSampleId_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35189,11 +62036,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequestConnection_SINGLE", + "name": "investigatorSampleId_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35201,11 +62048,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequestConnection_SOME", + "name": "investigatorSampleId_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35213,11 +62060,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequest_ALL", - "description": "Return Requests where all of the related Projects match this filter", + "name": "investigatorSampleId_SHORTEST_LT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35225,11 +62072,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequest_NONE", - "description": "Return Requests where none of the related Projects match this filter", + "name": "investigatorSampleId_SHORTEST_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35237,11 +62084,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequest_SINGLE", - "description": "Return Requests where one of the related Projects match this filter", + "name": "libraries_AVERAGE_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35249,11 +62096,11 @@ "deprecationReason": null }, { - "name": "projectsHasRequest_SOME", - "description": "Return Requests where some of the related Projects match this filter", + "name": "libraries_AVERAGE_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ProjectWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35261,11 +62108,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "libraries_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35273,11 +62120,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_CONTAINS", + "name": "libraries_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35285,11 +62132,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_ENDS_WITH", + "name": "libraries_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35297,31 +62144,23 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_IN", + "name": "libraries_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails_NOT", + "name": "libraries_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35329,11 +62168,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_NOT_CONTAINS", + "name": "libraries_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35341,11 +62180,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_NOT_ENDS_WITH", + "name": "libraries_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35353,31 +62192,23 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_NOT_IN", + "name": "libraries_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails_NOT_STARTS_WITH", + "name": "libraries_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35385,11 +62216,11 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_STARTS_WITH", + "name": "libraries_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35397,11 +62228,11 @@ "deprecationReason": null }, { - "name": "requestJson", + "name": "libraries_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35409,11 +62240,11 @@ "deprecationReason": null }, { - "name": "requestJson_CONTAINS", + "name": "libraries_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35421,11 +62252,11 @@ "deprecationReason": null }, { - "name": "requestJson_ENDS_WITH", + "name": "libraries_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35433,31 +62264,23 @@ "deprecationReason": null }, { - "name": "requestJson_IN", + "name": "libraries_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson_NOT", + "name": "libraries_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35465,11 +62288,11 @@ "deprecationReason": null }, { - "name": "requestJson_NOT_CONTAINS", + "name": "libraries_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35477,11 +62300,11 @@ "deprecationReason": null }, { - "name": "requestJson_NOT_ENDS_WITH", + "name": "libraries_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35489,31 +62312,23 @@ "deprecationReason": null }, { - "name": "requestJson_NOT_IN", + "name": "libraries_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson_NOT_STARTS_WITH", + "name": "oncotreeCode_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35521,11 +62336,11 @@ "deprecationReason": null }, { - "name": "requestJson_STARTS_WITH", + "name": "oncotreeCode_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35533,11 +62348,11 @@ "deprecationReason": null }, { - "name": "smileRequestId", + "name": "oncotreeCode_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35545,11 +62360,11 @@ "deprecationReason": null }, { - "name": "smileRequestId_CONTAINS", + "name": "oncotreeCode_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35557,11 +62372,11 @@ "deprecationReason": null }, { - "name": "smileRequestId_ENDS_WITH", + "name": "oncotreeCode_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35569,31 +62384,23 @@ "deprecationReason": null }, { - "name": "smileRequestId_IN", + "name": "oncotreeCode_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_NOT", + "name": "oncotreeCode_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35601,11 +62408,11 @@ "deprecationReason": null }, { - "name": "smileRequestId_NOT_CONTAINS", + "name": "oncotreeCode_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35613,11 +62420,11 @@ "deprecationReason": null }, { - "name": "smileRequestId_NOT_ENDS_WITH", + "name": "oncotreeCode_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35625,31 +62432,23 @@ "deprecationReason": null }, { - "name": "smileRequestId_NOT_IN", + "name": "oncotreeCode_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId_NOT_STARTS_WITH", + "name": "oncotreeCode_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35657,11 +62456,11 @@ "deprecationReason": null }, { - "name": "smileRequestId_STARTS_WITH", + "name": "oncotreeCode_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35669,11 +62468,11 @@ "deprecationReason": null }, { - "name": "strand", + "name": "oncotreeCode_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35681,11 +62480,11 @@ "deprecationReason": null }, { - "name": "strand_CONTAINS", + "name": "oncotreeCode_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35693,11 +62492,11 @@ "deprecationReason": null }, { - "name": "strand_ENDS_WITH", + "name": "oncotreeCode_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35705,27 +62504,23 @@ "deprecationReason": null }, { - "name": "strand_IN", + "name": "oncotreeCode_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_NOT", + "name": "oncotreeCode_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35733,11 +62528,11 @@ "deprecationReason": null }, { - "name": "strand_NOT_CONTAINS", + "name": "oncotreeCode_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35745,11 +62540,11 @@ "deprecationReason": null }, { - "name": "strand_NOT_ENDS_WITH", + "name": "oncotreeCode_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -35757,27 +62552,23 @@ "deprecationReason": null }, { - "name": "strand_NOT_IN", + "name": "oncotreeCode_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand_NOT_STARTS_WITH", + "name": "preservation_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -35785,1358 +62576,503 @@ "deprecationReason": null }, { - "name": "strand_STARTS_WITH", + "name": "preservation_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestsConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "preservation_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "preservation_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "preservation_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Sample", - "description": null, - "fields": [ + }, { - "name": "datasource", + "name": "preservation_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataSampleMetadata", + "name": "preservation_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preservation_GTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadata", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataSampleMetadataAggregate", + "name": "preservation_LONGEST_EQUAL", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SampleSampleMetadataHasMetadataSampleMetadataAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataSampleMetadataConnection", + "name": "preservation_LONGEST_GT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleHasMetadataSampleMetadataConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientsHasSample", + "name": "preservation_LONGEST_GTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Patient", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientsHasSampleAggregate", + "name": "preservation_LONGEST_LT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SamplePatientPatientsHasSampleAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientsHasSampleConnection", + "name": "preservation_LONGEST_LTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SamplePatientsHasSampleConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasSample", + "name": "preservation_LT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Request", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasSampleAggregate", + "name": "preservation_LTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SampleRequestRequestsHasSampleAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasSampleConnection", + "name": "preservation_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preservation_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preservation_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preservation_SHORTEST_LT", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleRequestsHasSampleConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "revisable", + "name": "preservation_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesIsAlias", + "name": "primaryId_AVERAGE_EQUAL", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAlias", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesIsAliasAggregate", + "name": "primaryId_AVERAGE_GT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SampleSampleAliasSampleAliasesIsAliasAggregationSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesIsAliasConnection", + "name": "primaryId_AVERAGE_GTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleSampleAliasesIsAliasConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory", + "name": "primaryId_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "primaryId_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId", + "name": "primaryId_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "primaryId_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource", + "name": "primaryId_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory", + "name": "primaryId_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "primaryId_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId", + "name": "primaryId_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAlias", - "description": null, - "fields": [ + }, { - "name": "isAliasSamples", + "name": "primaryId_LONGEST_LT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAliasSamplesAggregate", + "name": "primaryId_LONGEST_LTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SampleAliasSampleIsAliasSamplesAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAliasSamplesConnection", + "name": "primaryId_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primaryId_LTE", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAliasIsAliasSamplesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "primaryId_SHORTEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "primaryId_SHORTEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAliasAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "primaryId_SHORTEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "primaryId_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "primaryId_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasSamples", + "name": "qcReports_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "qcReports_AVERAGE_GT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasSamples", + "name": "qcReports_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesFieldInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -37144,195 +63080,103 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "qcReports_AVERAGE_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "qcReports_AVERAGE_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasDeleteInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasSamples", + "name": "qcReports_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasDisconnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasSamples", + "name": "qcReports_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAliasEdge", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "qcReports_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "qcReports_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAlias", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "qcReports_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "qcReports_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "qcReports_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -37344,7 +63188,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "qcReports_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -37356,7 +63200,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "qcReports_LT", "description": null, "type": { "kind": "SCALAR", @@ -37368,7 +63212,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "qcReports_LTE", "description": null, "type": { "kind": "SCALAR", @@ -37380,7 +63224,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "qcReports_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -37392,207 +63236,167 @@ "deprecationReason": null }, { - "name": "node", + "name": "qcReports_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "qcReports_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "qcReports_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleConnectWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAliasIsAliasSamplesConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "qcReports_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAliasIsAliasSamplesRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "sampleClass_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "sampleClass_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, + { + "name": "sampleClass_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "node", + "name": "sampleClass_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSort", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "sampleClass_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "sampleClass_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "sampleClass_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -37600,61 +63404,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "sampleClass_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "sampleClass_LONGEST_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "sampleClass_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -37662,34 +63440,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "sampleClass_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "sampleClass_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDisconnectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -37697,121 +63464,67 @@ "deprecationReason": null }, { - "name": "where", + "name": "sampleClass_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "sampleClass_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "sampleClass_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "sampleClass_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "sampleClass_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_AVERAGE_EQUAL", + "name": "sampleName_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -37823,7 +63536,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GT", + "name": "sampleName_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -37835,7 +63548,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GTE", + "name": "sampleName_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -37847,7 +63560,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LT", + "name": "sampleName_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -37859,7 +63572,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LTE", + "name": "sampleName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -37871,7 +63584,7 @@ "deprecationReason": null }, { - "name": "datasource_EQUAL", + "name": "sampleName_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -37883,7 +63596,7 @@ "deprecationReason": null }, { - "name": "datasource_GT", + "name": "sampleName_GT", "description": null, "type": { "kind": "SCALAR", @@ -37895,7 +63608,7 @@ "deprecationReason": null }, { - "name": "datasource_GTE", + "name": "sampleName_GTE", "description": null, "type": { "kind": "SCALAR", @@ -37907,7 +63620,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_EQUAL", + "name": "sampleName_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -37919,7 +63632,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GT", + "name": "sampleName_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -37931,7 +63644,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GTE", + "name": "sampleName_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -37943,7 +63656,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LT", + "name": "sampleName_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -37955,7 +63668,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LTE", + "name": "sampleName_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -37967,7 +63680,7 @@ "deprecationReason": null }, { - "name": "datasource_LT", + "name": "sampleName_LT", "description": null, "type": { "kind": "SCALAR", @@ -37979,7 +63692,7 @@ "deprecationReason": null }, { - "name": "datasource_LTE", + "name": "sampleName_LTE", "description": null, "type": { "kind": "SCALAR", @@ -37991,7 +63704,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_EQUAL", + "name": "sampleName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38003,7 +63716,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GT", + "name": "sampleName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -38015,7 +63728,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GTE", + "name": "sampleName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38027,7 +63740,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LT", + "name": "sampleName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38039,7 +63752,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LTE", + "name": "sampleName_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38051,7 +63764,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_EQUAL", + "name": "sampleOrigin_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38063,7 +63776,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GT", + "name": "sampleOrigin_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -38075,7 +63788,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GTE", + "name": "sampleOrigin_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38087,7 +63800,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LT", + "name": "sampleOrigin_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -38099,7 +63812,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LTE", + "name": "sampleOrigin_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38111,7 +63824,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_EQUAL", + "name": "sampleOrigin_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38123,7 +63836,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GT", + "name": "sampleOrigin_GT", "description": null, "type": { "kind": "SCALAR", @@ -38135,7 +63848,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GTE", + "name": "sampleOrigin_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38147,7 +63860,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_EQUAL", + "name": "sampleOrigin_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38159,7 +63872,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GT", + "name": "sampleOrigin_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -38171,7 +63884,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GTE", + "name": "sampleOrigin_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38183,7 +63896,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LT", + "name": "sampleOrigin_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38195,7 +63908,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LTE", + "name": "sampleOrigin_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38207,7 +63920,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LT", + "name": "sampleOrigin_LT", "description": null, "type": { "kind": "SCALAR", @@ -38219,7 +63932,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LTE", + "name": "sampleOrigin_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38231,7 +63944,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_EQUAL", + "name": "sampleOrigin_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38243,7 +63956,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GT", + "name": "sampleOrigin_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -38255,7 +63968,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GTE", + "name": "sampleOrigin_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38267,7 +63980,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LT", + "name": "sampleOrigin_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38279,7 +63992,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LTE", + "name": "sampleOrigin_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38291,7 +64004,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_EQUAL", + "name": "sampleType_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38303,7 +64016,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GT", + "name": "sampleType_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -38315,7 +64028,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GTE", + "name": "sampleType_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38327,7 +64040,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LT", + "name": "sampleType_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -38339,7 +64052,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LTE", + "name": "sampleType_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38351,7 +64064,7 @@ "deprecationReason": null }, { - "name": "sampleClass_EQUAL", + "name": "sampleType_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38363,7 +64076,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GT", + "name": "sampleType_GT", "description": null, "type": { "kind": "SCALAR", @@ -38375,7 +64088,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GTE", + "name": "sampleType_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38387,7 +64100,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_EQUAL", + "name": "sampleType_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38399,7 +64112,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GT", + "name": "sampleType_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -38411,7 +64124,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GTE", + "name": "sampleType_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38423,7 +64136,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LT", + "name": "sampleType_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38435,7 +64148,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LTE", + "name": "sampleType_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38447,7 +64160,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LT", + "name": "sampleType_LT", "description": null, "type": { "kind": "SCALAR", @@ -38459,7 +64172,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LTE", + "name": "sampleType_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38471,7 +64184,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_EQUAL", + "name": "sampleType_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38483,7 +64196,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GT", + "name": "sampleType_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -38495,7 +64208,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GTE", + "name": "sampleType_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38507,7 +64220,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LT", + "name": "sampleType_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38519,7 +64232,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LTE", + "name": "sampleType_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38531,7 +64244,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_EQUAL", + "name": "sex_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38543,7 +64256,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GT", + "name": "sex_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -38555,7 +64268,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GTE", + "name": "sex_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38567,7 +64280,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_LT", + "name": "sex_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -38579,7 +64292,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_LTE", + "name": "sex_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38591,7 +64304,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_EQUAL", + "name": "sex_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38603,7 +64316,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_GT", + "name": "sex_GT", "description": null, "type": { "kind": "SCALAR", @@ -38615,7 +64328,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_GTE", + "name": "sex_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38627,7 +64340,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_EQUAL", + "name": "sex_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38639,7 +64352,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GT", + "name": "sex_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -38651,7 +64364,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GTE", + "name": "sex_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38663,7 +64376,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LT", + "name": "sex_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38675,7 +64388,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LTE", + "name": "sex_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38687,7 +64400,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LT", + "name": "sex_LT", "description": null, "type": { "kind": "SCALAR", @@ -38699,7 +64412,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LTE", + "name": "sex_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38711,7 +64424,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_EQUAL", + "name": "sex_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -38723,7 +64436,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GT", + "name": "sex_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -38735,7 +64448,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GTE", + "name": "sex_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -38747,7 +64460,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LT", + "name": "sex_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38759,7 +64472,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LTE", + "name": "sex_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38769,170 +64482,205 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAliasIsAliasSamplesRelationship", - "description": null, - "fields": [ + }, + { + "name": "species_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "species_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "cursor", + "name": "species_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "species_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "species_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleUpdateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "species_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "species_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "species_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "species_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "species_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesUpdateConnectionInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -38940,30 +64688,19 @@ "deprecationReason": null }, { - "name": "where", + "name": "species_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasOptions", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "limit", + "name": "species_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -38975,7 +64712,7 @@ "deprecationReason": null }, { - "name": "offset", + "name": "species_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -38987,187 +64724,107 @@ "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more SampleAliasSort objects to sort SampleAliases by. The sorts will be applied in the order in which they are arranged in the array.", + "name": "tissueLocation_AVERAGE_EQUAL", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasSort", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasRelationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasSamples", + "name": "tissueLocation_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAliasSampleIsAliasSamplesAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "tissueLocation_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "tissueLocation_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SampleAliasSampleIsAliasSamplesNodeAggregateSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAliasSampleIsAliasSamplesNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "datasource", + "name": "tissueLocation_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory", + "name": "tissueLocation_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "tissueLocation_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId", + "name": "tissueLocation_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasSort", - "description": "Fields to sort SampleAliases by. The order in which sorts are applied is not guaranteed when specifying many fields in one SampleAliasSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "namespace", + "name": "tissueLocation_LONGEST_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39175,54 +64832,35 @@ "deprecationReason": null }, { - "name": "value", + "name": "tissueLocation_LONGEST_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "isAliasSamples", + "name": "tissueLocation_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "tissueLocation_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39230,74 +64868,47 @@ "deprecationReason": null }, { - "name": "value", + "name": "tissueLocation_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "tissueLocation_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "tissueLocation_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAliasSamplesAggregate", + "name": "tissueLocation_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39305,11 +64916,11 @@ "deprecationReason": null }, { - "name": "isAliasSamplesConnection_ALL", + "name": "tissueLocation_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39317,11 +64928,11 @@ "deprecationReason": null }, { - "name": "isAliasSamplesConnection_NONE", + "name": "tissueLocation_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39329,11 +64940,11 @@ "deprecationReason": null }, { - "name": "isAliasSamplesConnection_SINGLE", + "name": "tissueLocation_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39341,11 +64952,11 @@ "deprecationReason": null }, { - "name": "isAliasSamplesConnection_SOME", + "name": "tissueLocation_SHORTEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasIsAliasSamplesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39353,11 +64964,11 @@ "deprecationReason": null }, { - "name": "isAliasSamples_ALL", - "description": "Return SampleAliases where all of the related Samples match this filter", + "name": "tubeId_AVERAGE_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39365,11 +64976,11 @@ "deprecationReason": null }, { - "name": "isAliasSamples_NONE", - "description": "Return SampleAliases where none of the related Samples match this filter", + "name": "tubeId_AVERAGE_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39377,11 +64988,11 @@ "deprecationReason": null }, { - "name": "isAliasSamples_SINGLE", - "description": "Return SampleAliases where one of the related Samples match this filter", + "name": "tubeId_AVERAGE_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39389,11 +65000,11 @@ "deprecationReason": null }, { - "name": "isAliasSamples_SOME", - "description": "Return SampleAliases where some of the related Samples match this filter", + "name": "tubeId_AVERAGE_LT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39401,11 +65012,11 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "tubeId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39413,7 +65024,7 @@ "deprecationReason": null }, { - "name": "namespace_CONTAINS", + "name": "tubeId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -39425,11 +65036,11 @@ "deprecationReason": null }, { - "name": "namespace_ENDS_WITH", + "name": "tubeId_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39437,31 +65048,35 @@ "deprecationReason": null }, { - "name": "namespace_IN", + "name": "tubeId_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tubeId_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT", + "name": "tubeId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39469,11 +65084,11 @@ "deprecationReason": null }, { - "name": "namespace_NOT_CONTAINS", + "name": "tubeId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39481,11 +65096,11 @@ "deprecationReason": null }, { - "name": "namespace_NOT_ENDS_WITH", + "name": "tubeId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39493,31 +65108,23 @@ "deprecationReason": null }, { - "name": "namespace_NOT_IN", + "name": "tubeId_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_NOT_STARTS_WITH", + "name": "tubeId_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39525,11 +65132,11 @@ "deprecationReason": null }, { - "name": "namespace_STARTS_WITH", + "name": "tubeId_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39537,11 +65144,11 @@ "deprecationReason": null }, { - "name": "value", + "name": "tubeId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39549,11 +65156,11 @@ "deprecationReason": null }, { - "name": "value_CONTAINS", + "name": "tubeId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39561,11 +65168,11 @@ "deprecationReason": null }, { - "name": "value_ENDS_WITH", + "name": "tubeId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39573,31 +65180,23 @@ "deprecationReason": null }, { - "name": "value_IN", + "name": "tubeId_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_NOT", + "name": "tubeId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39605,11 +65204,11 @@ "deprecationReason": null }, { - "name": "value_NOT_CONTAINS", + "name": "tumorOrNormal_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39617,11 +65216,11 @@ "deprecationReason": null }, { - "name": "value_NOT_ENDS_WITH", + "name": "tumorOrNormal_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39629,31 +65228,23 @@ "deprecationReason": null }, { - "name": "value_NOT_IN", + "name": "tumorOrNormal_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value_NOT_STARTS_WITH", + "name": "tumorOrNormal_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -39661,235 +65252,131 @@ "deprecationReason": null }, { - "name": "value_STARTS_WITH", + "name": "tumorOrNormal_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleAliasesConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "tumorOrNormal_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAliasEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "tumorOrNormal_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "tumorOrNormal_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasMetadataSampleMetadata", + "name": "tumorOrNormal_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientsHasSample", + "name": "tumorOrNormal_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasSample", + "name": "tumorOrNormal_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesIsAlias", + "name": "tumorOrNormal_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "tumorOrNormal_LONGEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "datasource", + "name": "tumorOrNormal_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasMetadataSampleMetadata", + "name": "tumorOrNormal_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39897,11 +65384,11 @@ "deprecationReason": null }, { - "name": "patientsHasSample", + "name": "tumorOrNormal_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39909,11 +65396,11 @@ "deprecationReason": null }, { - "name": "requestsHasSample", + "name": "tumorOrNormal_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39921,27 +65408,23 @@ "deprecationReason": null }, { - "name": "revisable", + "name": "tumorOrNormal_SHORTEST_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesIsAlias", + "name": "tumorOrNormal_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -39949,24 +65432,31 @@ "deprecationReason": null }, { - "name": "sampleCategory", + "name": "tumorOrNormal_SHORTEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleHasMetadataSampleMetadataRelationship", + "description": null, + "fields": [ { - "name": "sampleClass", + "name": "cursor", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -39976,112 +65466,44 @@ "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId", + "name": "node", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SampleMetadata", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", + "name": "SampleHasMetadataSampleMetadataUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "hasMetadataSampleMetadata", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataDeleteFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "patientsHasSample", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleDeleteFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requestsHasSample", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleDeleteFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sampleAliasesIsAlias", + "name": "node", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasDeleteFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataUpdateInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -40094,12 +65516,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleDisconnectInput", + "name": "SampleHasMetadataSampleMetadataUpdateFieldInput", "description": null, "fields": null, "inputFields": [ { - "name": "hasMetadataSampleMetadata", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -40109,7 +65531,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataDisconnectFieldInput", + "name": "SampleHasMetadataSampleMetadataConnectFieldInput", "ofType": null } } @@ -40119,7 +65541,7 @@ "deprecationReason": null }, { - "name": "patientsHasSample", + "name": "create", "description": null, "type": { "kind": "LIST", @@ -40129,7 +65551,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleDisconnectFieldInput", + "name": "SampleHasMetadataSampleMetadataCreateFieldInput", "ofType": null } } @@ -40139,7 +65561,7 @@ "deprecationReason": null }, { - "name": "requestsHasSample", + "name": "delete", "description": null, "type": { "kind": "LIST", @@ -40149,7 +65571,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleDisconnectFieldInput", + "name": "SampleHasMetadataSampleMetadataDeleteFieldInput", "ofType": null } } @@ -40159,7 +65581,7 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAlias", + "name": "disconnect", "description": null, "type": { "kind": "LIST", @@ -40169,7 +65591,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasDisconnectFieldInput", + "name": "SampleHasMetadataSampleMetadataDisconnectFieldInput", "ofType": null } } @@ -40177,58 +65599,39 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleEdge", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "update", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataUpdateConnectionInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "where", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataAggregateInput", + "name": "SampleHasTempoTemposAggregateInput", "description": null, "fields": null, "inputFields": [ @@ -40243,7 +65646,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataAggregateInput", + "name": "SampleHasTempoTemposAggregateInput", "ofType": null } } @@ -40263,7 +65666,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataAggregateInput", + "name": "SampleHasTempoTemposAggregateInput", "ofType": null } } @@ -40331,18 +65734,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -40351,7 +65742,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectFieldInput", + "name": "SampleHasTempoTemposConnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -40366,7 +65757,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataConnectInput", + "name": "TempoConnectInput", "ofType": null } } @@ -40380,7 +65771,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataConnectWhere", + "name": "TempoConnectWhere", "ofType": null }, "defaultValue": null, @@ -40394,7 +65785,7 @@ }, { "kind": "OBJECT", - "name": "SampleHasMetadataSampleMetadataConnection", + "name": "SampleHasTempoTemposConnection", "description": null, "fields": [ { @@ -40412,7 +65803,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SampleHasMetadataSampleMetadataRelationship", + "name": "SampleHasTempoTemposRelationship", "ofType": null } } @@ -40461,30 +65852,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionSort", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "node", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSort", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "name": "SampleHasTempoTemposConnectionWhere", "description": null, "fields": null, "inputFields": [ @@ -40499,7 +65867,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null } } @@ -40519,7 +65887,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null } } @@ -40533,7 +65901,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, @@ -40545,7 +65913,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, @@ -40559,7 +65927,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataCreateFieldInput", + "name": "SampleHasTempoTemposCreateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -40571,7 +65939,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataCreateInput", + "name": "TempoCreateInput", "ofType": null } }, @@ -40586,7 +65954,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataDeleteFieldInput", + "name": "SampleHasTempoTemposDeleteFieldInput", "description": null, "fields": null, "inputFields": [ @@ -40595,7 +65963,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataDeleteInput", + "name": "TempoDeleteInput", "ofType": null }, "defaultValue": null, @@ -40607,7 +65975,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null }, "defaultValue": null, @@ -40621,7 +65989,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataDisconnectFieldInput", + "name": "SampleHasTempoTemposDisconnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -40630,7 +65998,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataDisconnectInput", + "name": "TempoDisconnectInput", "ofType": null }, "defaultValue": null, @@ -40642,7 +66010,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null }, "defaultValue": null, @@ -40656,7 +66024,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataFieldInput", + "name": "SampleHasTempoTemposFieldInput", "description": null, "fields": null, "inputFields": [ @@ -40671,7 +66039,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectFieldInput", + "name": "SampleHasTempoTemposConnectFieldInput", "ofType": null } } @@ -40691,7 +66059,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataCreateFieldInput", + "name": "SampleHasTempoTemposCreateFieldInput", "ofType": null } } @@ -40705,14 +66073,80 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "SampleHasTempoTemposRelationship", + "description": null, + "fields": [ + { + "name": "cursor", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", + "name": "SampleHasTempoTemposUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "AND", + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoUpdateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -40722,7 +66156,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", + "name": "SampleHasTempoTemposConnectFieldInput", "ofType": null } } @@ -40732,7 +66166,7 @@ "deprecationReason": null }, { - "name": "OR", + "name": "create", "description": null, "type": { "kind": "LIST", @@ -40742,7 +66176,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataNodeAggregationWhereInput", + "name": "SampleHasTempoTemposCreateFieldInput", "ofType": null } } @@ -40752,35 +66186,51 @@ "deprecationReason": null }, { - "name": "additionalProperties_AVERAGE_EQUAL", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_AVERAGE_GT", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_AVERAGE_GTE", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -40788,839 +66238,1391 @@ "deprecationReason": null }, { - "name": "additionalProperties_AVERAGE_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadata", + "description": null, + "fields": [ + { + "name": "additionalProperties", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "additionalProperties_AVERAGE_LTE", + "name": "baitSet", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_EQUAL", + "name": "cfDNA2dBarcode", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_GT", + "name": "cmoInfoIgoId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_GTE", + "name": "cmoPatientId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_EQUAL", + "name": "cmoSampleIdFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_GT", + "name": "cmoSampleName", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_GTE", + "name": "collectionYear", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_LT", + "name": "genePanel", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_LTE", + "name": "hasStatusStatuses", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Status", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LT", + "name": "hasStatusStatusesAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleMetadataStatusHasStatusStatusesAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LTE", + "name": "hasStatusStatusesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadataHasStatusStatusesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_EQUAL", + "name": "igoComplete", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_GT", + "name": "igoRequestId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_GTE", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_LT", + "name": "investigatorSampleId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_LTE", + "name": "libraries", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_EQUAL", + "name": "oncotreeCode", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_GT", + "name": "preservation", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_GTE", + "name": "primaryId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_LT", + "name": "qcReports", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_LTE", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_EQUAL", + "name": "sampleName", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baitSet_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baitSet_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_EQUAL", + "name": "sampleOrigin", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_GT", + "name": "sampleType", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_GTE", + "name": "samplesHasMetadata", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_LT", + "name": "samplesHasMetadataAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleMetadataSampleSamplesHasMetadataAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_LTE", + "name": "samplesHasMetadataConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LT", + "name": "sex", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LTE", + "name": "species", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_SHORTEST_EQUAL", + "name": "tissueLocation", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_SHORTEST_GT", + "name": "tubeId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_SHORTEST_GTE", + "name": "tumorOrNormal", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataAggregateSelection", + "description": null, + "fields": [ { - "name": "baitSet_SHORTEST_LT", + "name": "additionalProperties", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_SHORTEST_LTE", + "name": "baitSet", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_EQUAL", + "name": "cfDNA2dBarcode", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_GT", + "name": "cmoInfoIgoId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_GTE", + "name": "cmoPatientId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_LT", + "name": "cmoSampleIdFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_LTE", + "name": "cmoSampleName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_EQUAL", + "name": "collectionYear", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_GT", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_GTE", + "name": "genePanel", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_EQUAL", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_GT", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_GTE", + "name": "investigatorSampleId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_LT", + "name": "libraries", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_LTE", + "name": "oncotreeCode", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LT", + "name": "preservation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LTE", + "name": "primaryId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_EQUAL", + "name": "qcReports", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_GT", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_GTE", + "name": "sampleName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_LT", + "name": "sampleOrigin", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_LTE", + "name": "sampleType", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_EQUAL", + "name": "sex", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_GT", + "name": "species", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_GTE", + "name": "tissueLocation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_LT", + "name": "tubeId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_LTE", + "name": "tumorOrNormal", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataConnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoInfoIgoId_EQUAL", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_GT", + "name": "samplesHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoInfoIgoId_GTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataConnection", + "description": null, + "fields": [ { - "name": "cmoInfoIgoId_LONGEST_EQUAL", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadataEdge", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_LONGEST_GT", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_LONGEST_GTE", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoInfoIgoId_LONGEST_LT", + "name": "additionalProperties", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_LONGEST_LTE", + "name": "baitSet", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41628,11 +67630,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_LT", + "name": "cfDNA2dBarcode", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41640,11 +67642,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_LTE", + "name": "cmoInfoIgoId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41652,11 +67654,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_EQUAL", + "name": "cmoPatientId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41664,23 +67666,27 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_GT", + "name": "cmoSampleIdFields", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_GTE", + "name": "cmoSampleName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41688,35 +67694,43 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_LT", + "name": "collectionYear", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_LTE", + "name": "genePanel", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_EQUAL", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesFieldInput", "ofType": null }, "defaultValue": null, @@ -41724,11 +67738,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_GT", + "name": "igoComplete", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -41736,11 +67750,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_GTE", + "name": "igoRequestId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41748,23 +67762,27 @@ "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_LT", + "name": "importDate", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_LTE", + "name": "investigatorSampleId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41772,23 +67790,27 @@ "deprecationReason": null }, { - "name": "cmoPatientId_EQUAL", + "name": "libraries", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_GT", + "name": "oncotreeCode", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41796,11 +67818,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_GTE", + "name": "preservation", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41808,47 +67830,59 @@ "deprecationReason": null }, { - "name": "cmoPatientId_LONGEST_EQUAL", + "name": "primaryId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_LONGEST_GT", + "name": "qcReports", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_LONGEST_GTE", + "name": "sampleClass", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_LONGEST_LT", + "name": "sampleName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41856,11 +67890,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_LONGEST_LTE", + "name": "sampleOrigin", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41868,23 +67902,27 @@ "deprecationReason": null }, { - "name": "cmoPatientId_LT", + "name": "sampleType", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_LTE", + "name": "samplesHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataFieldInput", "ofType": null }, "defaultValue": null, @@ -41892,35 +67930,43 @@ "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_EQUAL", + "name": "sex", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_GT", + "name": "species", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_GTE", + "name": "tissueLocation", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41928,11 +67974,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_LT", + "name": "tubeId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -41940,115 +67986,219 @@ "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_LTE", + "name": "tumorOrNormal", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_AVERAGE_EQUAL", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_AVERAGE_GT", + "name": "samplesHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_AVERAGE_GTE", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_AVERAGE_LT", + "name": "samplesHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataEdge", + "description": null, + "fields": [ { - "name": "cmoSampleIdFields_AVERAGE_LTE", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadata", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_GT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_GTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -42060,7 +68210,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -42072,7 +68222,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -42084,7 +68234,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -42096,7 +68246,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -42108,119 +68258,207 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_LTE", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataHasStatusStatusesConnection", + "description": null, + "fields": [ { - "name": "cmoSampleIdFields_SHORTEST_GT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadataHasStatusStatusesRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_GTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_LT", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_SHORTEST_LTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_AVERAGE_EQUAL", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_AVERAGE_GT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_AVERAGE_GTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, @@ -42228,35 +68466,61 @@ "deprecationReason": null }, { - "name": "cmoSampleName_AVERAGE_LT", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_AVERAGE_LTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_EQUAL", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "StatusDeleteInput", "ofType": null }, "defaultValue": null, @@ -42264,23 +68528,34 @@ "deprecationReason": null }, { - "name": "cmoSampleName_GT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_GTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusDisconnectInput", "ofType": null }, "defaultValue": null, @@ -42288,71 +68563,125 @@ "deprecationReason": null }, { - "name": "cmoSampleName_LONGEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_LONGEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_LONGEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_LONGEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_LONGEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_LT", + "name": "validationReport_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -42360,11 +68689,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_LTE", + "name": "validationReport_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -42372,11 +68701,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_EQUAL", + "name": "validationReport_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -42384,11 +68713,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_GT", + "name": "validationReport_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -42396,11 +68725,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_GTE", + "name": "validationReport_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -42408,11 +68737,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_LT", + "name": "validationReport_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -42420,7 +68749,7 @@ "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_LTE", + "name": "validationReport_GT", "description": null, "type": { "kind": "SCALAR", @@ -42432,11 +68761,11 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_EQUAL", + "name": "validationReport_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42444,11 +68773,11 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_GT", + "name": "validationReport_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42456,11 +68785,11 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_GTE", + "name": "validationReport_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42468,11 +68797,11 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_LT", + "name": "validationReport_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42480,11 +68809,11 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_LTE", + "name": "validationReport_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42492,11 +68821,11 @@ "deprecationReason": null }, { - "name": "collectionYear_EQUAL", + "name": "validationReport_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42504,7 +68833,7 @@ "deprecationReason": null }, { - "name": "collectionYear_GT", + "name": "validationReport_LT", "description": null, "type": { "kind": "SCALAR", @@ -42516,7 +68845,7 @@ "deprecationReason": null }, { - "name": "collectionYear_GTE", + "name": "validationReport_LTE", "description": null, "type": { "kind": "SCALAR", @@ -42528,7 +68857,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_EQUAL", + "name": "validationReport_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -42540,7 +68869,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_GT", + "name": "validationReport_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -42552,7 +68881,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_GTE", + "name": "validationReport_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -42564,7 +68893,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_LT", + "name": "validationReport_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -42576,7 +68905,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_LTE", + "name": "validationReport_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -42586,97 +68915,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataHasStatusStatusesRelationship", + "description": null, + "fields": [ { - "name": "collectionYear_LT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear_LTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Status", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "collectionYear_SHORTEST_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "collectionYear_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_LT", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_AVERAGE_EQUAL", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -42684,23 +69086,34 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataOptions", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_AVERAGE_GTE", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42708,11 +69121,11 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LT", + "name": "offset", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -42720,139 +69133,243 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LTE", - "description": null, + "name": "sort", + "description": "Specify one or more SampleMetadataSort objects to sort SampleMetadata by. The sorts will be applied in the order in which they are arranged in the array.", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSort", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataRelationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_EQUAL", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_GT", + "name": "samplesHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataSampleSamplesHasMetadataAggregationSelection", + "description": null, + "fields": [ { - "name": "genePanel_GTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LONGEST_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleMetadataSampleSamplesHasMetadataNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataSampleSamplesHasMetadataNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "genePanel_LONGEST_GT", + "name": "datasource", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LONGEST_GTE", + "name": "sampleCategory", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LONGEST_LT", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LONGEST_LTE", + "name": "smileSampleId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -42864,7 +69381,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -42876,7 +69393,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -42888,7 +69405,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -42900,7 +69417,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -42912,119 +69429,207 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnection", + "description": null, + "fields": [ { - "name": "igoRequestId_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadataSamplesHasMetadataRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -43032,35 +69637,61 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", "ofType": null }, "defaultValue": null, @@ -43068,23 +69699,34 @@ "deprecationReason": null }, { - "name": "igoRequestId_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", "ofType": null }, "defaultValue": null, @@ -43092,67 +69734,121 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_AVERAGE_EQUAL", + "name": "datasource_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43164,7 +69860,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_GT", + "name": "datasource_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -43176,7 +69872,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_GTE", + "name": "datasource_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43188,7 +69884,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_LT", + "name": "datasource_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -43200,7 +69896,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_LTE", + "name": "datasource_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43212,7 +69908,7 @@ "deprecationReason": null }, { - "name": "importDate_EQUAL", + "name": "datasource_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43224,7 +69920,7 @@ "deprecationReason": null }, { - "name": "importDate_GT", + "name": "datasource_GT", "description": null, "type": { "kind": "SCALAR", @@ -43236,7 +69932,7 @@ "deprecationReason": null }, { - "name": "importDate_GTE", + "name": "datasource_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43248,7 +69944,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_EQUAL", + "name": "datasource_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43260,7 +69956,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_GT", + "name": "datasource_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -43272,7 +69968,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_GTE", + "name": "datasource_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43284,7 +69980,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_LT", + "name": "datasource_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -43296,7 +69992,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_LTE", + "name": "datasource_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43308,7 +70004,7 @@ "deprecationReason": null }, { - "name": "importDate_LT", + "name": "datasource_LT", "description": null, "type": { "kind": "SCALAR", @@ -43320,7 +70016,7 @@ "deprecationReason": null }, { - "name": "importDate_LTE", + "name": "datasource_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43332,7 +70028,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_EQUAL", + "name": "datasource_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43344,7 +70040,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_GT", + "name": "datasource_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -43356,7 +70052,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_GTE", + "name": "datasource_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43368,7 +70064,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_LT", + "name": "datasource_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -43380,7 +70076,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_LTE", + "name": "datasource_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43392,7 +70088,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_EQUAL", + "name": "sampleCategory_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43404,7 +70100,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_GT", + "name": "sampleCategory_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -43416,7 +70112,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_GTE", + "name": "sampleCategory_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43428,7 +70124,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_LT", + "name": "sampleCategory_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -43440,7 +70136,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_LTE", + "name": "sampleCategory_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43452,7 +70148,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_EQUAL", + "name": "sampleCategory_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43464,7 +70160,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_GT", + "name": "sampleCategory_GT", "description": null, "type": { "kind": "SCALAR", @@ -43476,7 +70172,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_GTE", + "name": "sampleCategory_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43488,7 +70184,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_EQUAL", + "name": "sampleCategory_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43500,7 +70196,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_GT", + "name": "sampleCategory_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -43512,7 +70208,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_GTE", + "name": "sampleCategory_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43524,7 +70220,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_LT", + "name": "sampleCategory_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -43536,7 +70232,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_LTE", + "name": "sampleCategory_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43548,7 +70244,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LT", + "name": "sampleCategory_LT", "description": null, "type": { "kind": "SCALAR", @@ -43560,7 +70256,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LTE", + "name": "sampleCategory_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43572,7 +70268,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_EQUAL", + "name": "sampleCategory_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43584,7 +70280,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_GT", + "name": "sampleCategory_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -43596,7 +70292,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_GTE", + "name": "sampleCategory_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43608,7 +70304,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_LT", + "name": "sampleCategory_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -43620,7 +70316,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_LTE", + "name": "sampleCategory_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43632,7 +70328,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_EQUAL", + "name": "sampleClass_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43644,7 +70340,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_GT", + "name": "sampleClass_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -43656,7 +70352,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_GTE", + "name": "sampleClass_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43668,7 +70364,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_LT", + "name": "sampleClass_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -43680,7 +70376,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_LTE", + "name": "sampleClass_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43692,7 +70388,7 @@ "deprecationReason": null }, { - "name": "libraries_EQUAL", + "name": "sampleClass_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43704,7 +70400,7 @@ "deprecationReason": null }, { - "name": "libraries_GT", + "name": "sampleClass_GT", "description": null, "type": { "kind": "SCALAR", @@ -43716,7 +70412,7 @@ "deprecationReason": null }, { - "name": "libraries_GTE", + "name": "sampleClass_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43728,7 +70424,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_EQUAL", + "name": "sampleClass_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43740,7 +70436,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_GT", + "name": "sampleClass_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -43752,7 +70448,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_GTE", + "name": "sampleClass_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43764,7 +70460,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_LT", + "name": "sampleClass_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -43776,7 +70472,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_LTE", + "name": "sampleClass_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43788,7 +70484,7 @@ "deprecationReason": null }, { - "name": "libraries_LT", + "name": "sampleClass_LT", "description": null, "type": { "kind": "SCALAR", @@ -43800,7 +70496,7 @@ "deprecationReason": null }, { - "name": "libraries_LTE", + "name": "sampleClass_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43812,7 +70508,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_EQUAL", + "name": "sampleClass_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43824,7 +70520,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_GT", + "name": "sampleClass_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -43836,7 +70532,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_GTE", + "name": "sampleClass_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43848,7 +70544,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_LT", + "name": "sampleClass_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -43860,7 +70556,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_LTE", + "name": "sampleClass_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43872,7 +70568,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_EQUAL", + "name": "smileSampleId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43884,7 +70580,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_GT", + "name": "smileSampleId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -43896,7 +70592,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_GTE", + "name": "smileSampleId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -43908,7 +70604,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_LT", + "name": "smileSampleId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -43920,7 +70616,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_LTE", + "name": "smileSampleId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -43932,7 +70628,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_EQUAL", + "name": "smileSampleId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -43944,55 +70640,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oncotreeCode_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oncotreeCode_LONGEST_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oncotreeCode_LONGEST_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oncotreeCode_LONGEST_GTE", + "name": "smileSampleId_GT", "description": null, "type": { "kind": "SCALAR", @@ -44004,7 +70652,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LONGEST_LT", + "name": "smileSampleId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -44016,7 +70664,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LONGEST_LTE", + "name": "smileSampleId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -44028,7 +70676,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LT", + "name": "smileSampleId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -44040,7 +70688,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LTE", + "name": "smileSampleId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -44052,7 +70700,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_EQUAL", + "name": "smileSampleId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -44064,7 +70712,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_GT", + "name": "smileSampleId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -44076,7 +70724,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_GTE", + "name": "smileSampleId_LT", "description": null, "type": { "kind": "SCALAR", @@ -44088,7 +70736,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_LT", + "name": "smileSampleId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -44100,7 +70748,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_LTE", + "name": "smileSampleId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -44112,79 +70760,7 @@ "deprecationReason": null }, { - "name": "preservation_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_GT", + "name": "smileSampleId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -44196,7 +70772,7 @@ "deprecationReason": null }, { - "name": "preservation_GTE", + "name": "smileSampleId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -44208,7 +70784,7 @@ "deprecationReason": null }, { - "name": "preservation_LONGEST_EQUAL", + "name": "smileSampleId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -44220,7 +70796,7 @@ "deprecationReason": null }, { - "name": "preservation_LONGEST_GT", + "name": "smileSampleId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -44230,97 +70806,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataSamplesHasMetadataRelationship", + "description": null, + "fields": [ { - "name": "preservation_LONGEST_GTE", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_LONGEST_LT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "preservation_LONGEST_LTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "preservation_LT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_LTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_SHORTEST_EQUAL", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_SHORTEST_GT", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_SHORTEST_GTE", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -44328,23 +70977,34 @@ "deprecationReason": null }, { - "name": "preservation_SHORTEST_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSort", + "description": "Fields to sort SampleMetadata by. The order in which sorts are applied is not guaranteed when specifying many fields in one SampleMetadataSort object.", + "fields": null, + "inputFields": [ { - "name": "preservation_SHORTEST_LTE", + "name": "additionalProperties", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44352,11 +71012,11 @@ "deprecationReason": null }, { - "name": "primaryId_AVERAGE_EQUAL", + "name": "baitSet", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44364,11 +71024,11 @@ "deprecationReason": null }, { - "name": "primaryId_AVERAGE_GT", + "name": "cfDNA2dBarcode", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", + "type": { + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44376,11 +71036,11 @@ "deprecationReason": null }, { - "name": "primaryId_AVERAGE_GTE", + "name": "cmoInfoIgoId", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44388,11 +71048,11 @@ "deprecationReason": null }, { - "name": "primaryId_AVERAGE_LT", + "name": "cmoPatientId", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44400,11 +71060,11 @@ "deprecationReason": null }, { - "name": "primaryId_AVERAGE_LTE", + "name": "cmoSampleIdFields", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44412,11 +71072,11 @@ "deprecationReason": null }, { - "name": "primaryId_EQUAL", + "name": "cmoSampleName", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44424,11 +71084,11 @@ "deprecationReason": null }, { - "name": "primaryId_GT", + "name": "collectionYear", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44436,11 +71096,11 @@ "deprecationReason": null }, { - "name": "primaryId_GTE", + "name": "genePanel", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44448,11 +71108,11 @@ "deprecationReason": null }, { - "name": "primaryId_LONGEST_EQUAL", + "name": "igoComplete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44460,11 +71120,11 @@ "deprecationReason": null }, { - "name": "primaryId_LONGEST_GT", + "name": "igoRequestId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44472,11 +71132,11 @@ "deprecationReason": null }, { - "name": "primaryId_LONGEST_GTE", + "name": "importDate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44484,11 +71144,11 @@ "deprecationReason": null }, { - "name": "primaryId_LONGEST_LT", + "name": "investigatorSampleId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44496,11 +71156,11 @@ "deprecationReason": null }, { - "name": "primaryId_LONGEST_LTE", + "name": "libraries", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44508,11 +71168,11 @@ "deprecationReason": null }, { - "name": "primaryId_LT", + "name": "oncotreeCode", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44520,11 +71180,11 @@ "deprecationReason": null }, { - "name": "primaryId_LTE", + "name": "preservation", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44532,11 +71192,11 @@ "deprecationReason": null }, { - "name": "primaryId_SHORTEST_EQUAL", + "name": "primaryId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44544,11 +71204,11 @@ "deprecationReason": null }, { - "name": "primaryId_SHORTEST_GT", + "name": "qcReports", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44556,11 +71216,11 @@ "deprecationReason": null }, { - "name": "primaryId_SHORTEST_GTE", + "name": "sampleClass", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44568,11 +71228,11 @@ "deprecationReason": null }, { - "name": "primaryId_SHORTEST_LT", + "name": "sampleName", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44580,11 +71240,11 @@ "deprecationReason": null }, { - "name": "primaryId_SHORTEST_LTE", + "name": "sampleOrigin", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44592,11 +71252,11 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_EQUAL", + "name": "sampleType", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44604,11 +71264,11 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_GT", + "name": "sex", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44616,11 +71276,11 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_GTE", + "name": "species", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44628,11 +71288,11 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_LT", + "name": "tissueLocation", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44640,11 +71300,11 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_LTE", + "name": "tubeId", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -44652,59 +71312,100 @@ "deprecationReason": null }, { - "name": "qcReports_EQUAL", + "name": "tumorOrNormal", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataStatusHasStatusStatusesAggregationSelection", + "description": null, + "fields": [ { - "name": "qcReports_GT", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports_GTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleMetadataStatusHasStatusStatusesNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleMetadataStatusHasStatusStatusesNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "qcReports_LONGEST_EQUAL", + "name": "validationReport", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "qcReports_LONGEST_GT", + "name": "additionalProperties", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44712,11 +71413,11 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_GTE", + "name": "baitSet", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44724,11 +71425,11 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_LT", + "name": "cfDNA2dBarcode", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44736,11 +71437,11 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_LTE", + "name": "cmoInfoIgoId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44748,11 +71449,11 @@ "deprecationReason": null }, { - "name": "qcReports_LT", + "name": "cmoPatientId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44760,11 +71461,11 @@ "deprecationReason": null }, { - "name": "qcReports_LTE", + "name": "cmoSampleIdFields", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44772,11 +71473,11 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_EQUAL", + "name": "cmoSampleName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44784,11 +71485,11 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_GT", + "name": "collectionYear", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44796,11 +71497,11 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_GTE", + "name": "genePanel", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44808,23 +71509,31 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_LT", + "name": "hasStatusStatuses", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesUpdateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports_SHORTEST_LTE", + "name": "igoComplete", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -44832,11 +71541,11 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_EQUAL", + "name": "igoRequestId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44844,11 +71553,11 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GT", + "name": "importDate", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44856,11 +71565,11 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GTE", + "name": "investigatorSampleId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44868,11 +71577,11 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LT", + "name": "libraries", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44880,11 +71589,11 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LTE", + "name": "oncotreeCode", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44892,7 +71601,7 @@ "deprecationReason": null }, { - "name": "sampleClass_EQUAL", + "name": "preservation", "description": null, "type": { "kind": "SCALAR", @@ -44904,11 +71613,11 @@ "deprecationReason": null }, { - "name": "sampleClass_GT", + "name": "primaryId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44916,11 +71625,11 @@ "deprecationReason": null }, { - "name": "sampleClass_GTE", + "name": "qcReports", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44928,11 +71637,11 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_EQUAL", + "name": "sampleClass", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44940,11 +71649,11 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GT", + "name": "sampleName", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44952,11 +71661,11 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GTE", + "name": "sampleOrigin", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44964,11 +71673,11 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LT", + "name": "sampleType", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -44976,23 +71685,31 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LTE", + "name": "samplesHasMetadata", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataUpdateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_LT", + "name": "sex", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45000,11 +71717,11 @@ "deprecationReason": null }, { - "name": "sampleClass_LTE", + "name": "species", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45012,11 +71729,11 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_EQUAL", + "name": "tissueLocation", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45024,11 +71741,11 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GT", + "name": "tubeId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45036,47 +71753,74 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GTE", + "name": "tumorOrNormal", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleClass_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName_AVERAGE_EQUAL", + "name": "additionalProperties", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45084,11 +71828,11 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_GT", + "name": "additionalProperties_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45096,11 +71840,11 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_GTE", + "name": "additionalProperties_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45108,23 +71852,31 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_LT", + "name": "additionalProperties_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName_AVERAGE_LTE", + "name": "additionalProperties_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45132,7 +71884,7 @@ "deprecationReason": null }, { - "name": "sampleName_EQUAL", + "name": "additionalProperties_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -45144,11 +71896,11 @@ "deprecationReason": null }, { - "name": "sampleName_GT", + "name": "additionalProperties_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45156,23 +71908,31 @@ "deprecationReason": null }, { - "name": "sampleName_GTE", + "name": "additionalProperties_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName_LONGEST_EQUAL", + "name": "additionalProperties_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45180,11 +71940,11 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_GT", + "name": "additionalProperties_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45192,11 +71952,11 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_GTE", + "name": "baitSet", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45204,11 +71964,11 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_LT", + "name": "baitSet_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45216,11 +71976,11 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_LTE", + "name": "baitSet_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45228,23 +71988,27 @@ "deprecationReason": null }, { - "name": "sampleName_LT", + "name": "baitSet_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName_LTE", + "name": "baitSet_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45252,11 +72016,11 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_EQUAL", + "name": "baitSet_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45264,11 +72028,11 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_GT", + "name": "baitSet_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45276,23 +72040,27 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_GTE", + "name": "baitSet_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName_SHORTEST_LT", + "name": "baitSet_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45300,11 +72068,11 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_LTE", + "name": "baitSet_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45312,11 +72080,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_EQUAL", + "name": "cfDNA2dBarcode", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45324,11 +72092,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_GT", + "name": "cfDNA2dBarcode_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45336,11 +72104,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_GTE", + "name": "cfDNA2dBarcode_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45348,23 +72116,27 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_LT", + "name": "cfDNA2dBarcode_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_LTE", + "name": "cfDNA2dBarcode_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45372,7 +72144,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_EQUAL", + "name": "cfDNA2dBarcode_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -45384,11 +72156,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_GT", + "name": "cfDNA2dBarcode_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45396,23 +72168,27 @@ "deprecationReason": null }, { - "name": "sampleOrigin_GTE", + "name": "cfDNA2dBarcode_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_EQUAL", + "name": "cfDNA2dBarcode_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45420,11 +72196,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_GT", + "name": "cfDNA2dBarcode_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45432,11 +72208,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_GTE", + "name": "cmoInfoIgoId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45444,11 +72220,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_LT", + "name": "cmoInfoIgoId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45456,11 +72232,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_LTE", + "name": "cmoInfoIgoId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45468,23 +72244,27 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LT", + "name": "cmoInfoIgoId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin_LTE", + "name": "cmoInfoIgoId_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45492,11 +72272,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_EQUAL", + "name": "cmoInfoIgoId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45504,11 +72284,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_GT", + "name": "cmoInfoIgoId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45516,23 +72296,27 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_GTE", + "name": "cmoInfoIgoId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_LT", + "name": "cmoInfoIgoId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45540,11 +72324,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_LTE", + "name": "cmoInfoIgoId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45552,11 +72336,11 @@ "deprecationReason": null }, { - "name": "sampleType_AVERAGE_EQUAL", + "name": "cmoPatientId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45564,11 +72348,11 @@ "deprecationReason": null }, { - "name": "sampleType_AVERAGE_GT", + "name": "cmoPatientId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45576,11 +72360,11 @@ "deprecationReason": null }, { - "name": "sampleType_AVERAGE_GTE", + "name": "cmoPatientId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45588,23 +72372,27 @@ "deprecationReason": null }, { - "name": "sampleType_AVERAGE_LT", + "name": "cmoPatientId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_AVERAGE_LTE", + "name": "cmoPatientId_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45612,7 +72400,7 @@ "deprecationReason": null }, { - "name": "sampleType_EQUAL", + "name": "cmoPatientId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -45624,11 +72412,11 @@ "deprecationReason": null }, { - "name": "sampleType_GT", + "name": "cmoPatientId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45636,23 +72424,27 @@ "deprecationReason": null }, { - "name": "sampleType_GTE", + "name": "cmoPatientId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_LONGEST_EQUAL", + "name": "cmoPatientId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45660,11 +72452,11 @@ "deprecationReason": null }, { - "name": "sampleType_LONGEST_GT", + "name": "cmoPatientId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45672,11 +72464,11 @@ "deprecationReason": null }, { - "name": "sampleType_LONGEST_GTE", + "name": "cmoSampleIdFields", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45684,11 +72476,11 @@ "deprecationReason": null }, { - "name": "sampleType_LONGEST_LT", + "name": "cmoSampleIdFields_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45696,11 +72488,11 @@ "deprecationReason": null }, { - "name": "sampleType_LONGEST_LTE", + "name": "cmoSampleIdFields_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45708,23 +72500,31 @@ "deprecationReason": null }, { - "name": "sampleType_LT", + "name": "cmoSampleIdFields_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_LTE", + "name": "cmoSampleIdFields_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45732,11 +72532,11 @@ "deprecationReason": null }, { - "name": "sampleType_SHORTEST_EQUAL", + "name": "cmoSampleIdFields_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45744,11 +72544,11 @@ "deprecationReason": null }, { - "name": "sampleType_SHORTEST_GT", + "name": "cmoSampleIdFields_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45756,23 +72556,31 @@ "deprecationReason": null }, { - "name": "sampleType_SHORTEST_GTE", + "name": "cmoSampleIdFields_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_SHORTEST_LT", + "name": "cmoSampleIdFields_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45780,11 +72588,11 @@ "deprecationReason": null }, { - "name": "sampleType_SHORTEST_LTE", + "name": "cmoSampleIdFields_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45792,11 +72600,11 @@ "deprecationReason": null }, { - "name": "sex_AVERAGE_EQUAL", + "name": "cmoSampleName", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45804,11 +72612,11 @@ "deprecationReason": null }, { - "name": "sex_AVERAGE_GT", + "name": "cmoSampleName_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45816,11 +72624,11 @@ "deprecationReason": null }, { - "name": "sex_AVERAGE_GTE", + "name": "cmoSampleName_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45828,23 +72636,27 @@ "deprecationReason": null }, { - "name": "sex_AVERAGE_LT", + "name": "cmoSampleName_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_AVERAGE_LTE", + "name": "cmoSampleName_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45852,7 +72664,7 @@ "deprecationReason": null }, { - "name": "sex_EQUAL", + "name": "cmoSampleName_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -45864,11 +72676,11 @@ "deprecationReason": null }, { - "name": "sex_GT", + "name": "cmoSampleName_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45876,23 +72688,27 @@ "deprecationReason": null }, { - "name": "sex_GTE", + "name": "cmoSampleName_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_LONGEST_EQUAL", + "name": "cmoSampleName_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45900,11 +72716,11 @@ "deprecationReason": null }, { - "name": "sex_LONGEST_GT", + "name": "cmoSampleName_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45912,11 +72728,11 @@ "deprecationReason": null }, { - "name": "sex_LONGEST_GTE", + "name": "collectionYear", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45924,11 +72740,11 @@ "deprecationReason": null }, { - "name": "sex_LONGEST_LT", + "name": "collectionYear_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45936,11 +72752,11 @@ "deprecationReason": null }, { - "name": "sex_LONGEST_LTE", + "name": "collectionYear_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45948,23 +72764,31 @@ "deprecationReason": null }, { - "name": "sex_LT", + "name": "collectionYear_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_LTE", + "name": "collectionYear_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45972,11 +72796,11 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_EQUAL", + "name": "collectionYear_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45984,11 +72808,11 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_GT", + "name": "collectionYear_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -45996,23 +72820,31 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_GTE", + "name": "collectionYear_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_SHORTEST_LT", + "name": "collectionYear_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46020,11 +72852,11 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_LTE", + "name": "collectionYear_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46032,11 +72864,11 @@ "deprecationReason": null }, { - "name": "species_AVERAGE_EQUAL", + "name": "genePanel", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46044,11 +72876,11 @@ "deprecationReason": null }, { - "name": "species_AVERAGE_GT", + "name": "genePanel_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46056,11 +72888,11 @@ "deprecationReason": null }, { - "name": "species_AVERAGE_GTE", + "name": "genePanel_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46068,23 +72900,31 @@ "deprecationReason": null }, { - "name": "species_AVERAGE_LT", + "name": "genePanel_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_AVERAGE_LTE", + "name": "genePanel_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46092,7 +72932,7 @@ "deprecationReason": null }, { - "name": "species_EQUAL", + "name": "genePanel_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -46104,11 +72944,11 @@ "deprecationReason": null }, { - "name": "species_GT", + "name": "genePanel_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46116,23 +72956,31 @@ "deprecationReason": null }, { - "name": "species_GTE", + "name": "genePanel_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_LONGEST_EQUAL", + "name": "genePanel_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46140,11 +72988,11 @@ "deprecationReason": null }, { - "name": "species_LONGEST_GT", + "name": "genePanel_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46152,11 +73000,11 @@ "deprecationReason": null }, { - "name": "species_LONGEST_GTE", + "name": "hasStatusStatusesAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesAggregateInput", "ofType": null }, "defaultValue": null, @@ -46164,11 +73012,11 @@ "deprecationReason": null }, { - "name": "species_LONGEST_LT", + "name": "hasStatusStatusesConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -46176,11 +73024,11 @@ "deprecationReason": null }, { - "name": "species_LONGEST_LTE", + "name": "hasStatusStatusesConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -46188,11 +73036,11 @@ "deprecationReason": null }, { - "name": "species_LT", + "name": "hasStatusStatusesConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -46200,11 +73048,11 @@ "deprecationReason": null }, { - "name": "species_LTE", + "name": "hasStatusStatusesConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataHasStatusStatusesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -46212,11 +73060,11 @@ "deprecationReason": null }, { - "name": "species_SHORTEST_EQUAL", - "description": null, + "name": "hasStatusStatuses_ALL", + "description": "Return SampleMetadata where all of the related Statuses match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, @@ -46224,11 +73072,11 @@ "deprecationReason": null }, { - "name": "species_SHORTEST_GT", - "description": null, + "name": "hasStatusStatuses_NONE", + "description": "Return SampleMetadata where none of the related Statuses match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, @@ -46236,11 +73084,11 @@ "deprecationReason": null }, { - "name": "species_SHORTEST_GTE", - "description": null, + "name": "hasStatusStatuses_SINGLE", + "description": "Return SampleMetadata where one of the related Statuses match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, @@ -46248,11 +73096,11 @@ "deprecationReason": null }, { - "name": "species_SHORTEST_LT", - "description": null, + "name": "hasStatusStatuses_SOME", + "description": "Return SampleMetadata where some of the related Statuses match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusWhere", "ofType": null }, "defaultValue": null, @@ -46260,11 +73108,11 @@ "deprecationReason": null }, { - "name": "species_SHORTEST_LTE", + "name": "igoComplete", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -46272,11 +73120,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_EQUAL", + "name": "igoComplete_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -46284,11 +73132,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_GT", + "name": "igoRequestId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46296,11 +73144,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_GTE", + "name": "igoRequestId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46308,11 +73156,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_LT", + "name": "igoRequestId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46320,19 +73168,23 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_LTE", + "name": "igoRequestId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_EQUAL", + "name": "igoRequestId_NOT", "description": null, "type": { "kind": "SCALAR", @@ -46344,11 +73196,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_GT", + "name": "igoRequestId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46356,11 +73208,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_GTE", + "name": "igoRequestId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46368,23 +73220,27 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_EQUAL", + "name": "igoRequestId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_GT", + "name": "igoRequestId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46392,11 +73248,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_GTE", + "name": "igoRequestId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46404,11 +73260,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_LT", + "name": "importDate", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46416,11 +73272,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_LTE", + "name": "importDate_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46428,11 +73284,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_LT", + "name": "importDate_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46440,23 +73296,31 @@ "deprecationReason": null }, { - "name": "tissueLocation_LTE", + "name": "importDate_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_EQUAL", + "name": "importDate_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46464,11 +73328,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_GT", + "name": "importDate_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46476,11 +73340,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_GTE", + "name": "importDate_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46488,23 +73352,31 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_LT", + "name": "importDate_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_LTE", + "name": "importDate_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46512,11 +73384,11 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_EQUAL", + "name": "importDate_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46524,11 +73396,11 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_GT", + "name": "investigatorSampleId", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46536,11 +73408,11 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_GTE", + "name": "investigatorSampleId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46548,11 +73420,11 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_LT", + "name": "investigatorSampleId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46560,19 +73432,23 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_LTE", + "name": "investigatorSampleId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId_EQUAL", + "name": "investigatorSampleId_NOT", "description": null, "type": { "kind": "SCALAR", @@ -46584,11 +73460,11 @@ "deprecationReason": null }, { - "name": "tubeId_GT", + "name": "investigatorSampleId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46596,11 +73472,11 @@ "deprecationReason": null }, { - "name": "tubeId_GTE", + "name": "investigatorSampleId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46608,23 +73484,27 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_EQUAL", + "name": "investigatorSampleId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId_LONGEST_GT", + "name": "investigatorSampleId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46632,11 +73512,11 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_GTE", + "name": "investigatorSampleId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46644,11 +73524,11 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_LT", + "name": "libraries", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46656,11 +73536,11 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_LTE", + "name": "libraries_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46668,11 +73548,11 @@ "deprecationReason": null }, { - "name": "tubeId_LT", + "name": "libraries_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46680,23 +73560,31 @@ "deprecationReason": null }, { - "name": "tubeId_LTE", + "name": "libraries_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId_SHORTEST_EQUAL", + "name": "libraries_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46704,11 +73592,11 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_GT", + "name": "libraries_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46716,11 +73604,11 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_GTE", + "name": "libraries_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46728,23 +73616,31 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_LT", + "name": "libraries_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId_SHORTEST_LTE", + "name": "libraries_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46752,11 +73648,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_EQUAL", + "name": "libraries_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46764,11 +73660,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_GT", + "name": "oncotreeCode", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46776,11 +73672,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_GTE", + "name": "oncotreeCode_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46788,11 +73684,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_LT", + "name": "oncotreeCode_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46800,19 +73696,23 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_LTE", + "name": "oncotreeCode_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal_EQUAL", + "name": "oncotreeCode_NOT", "description": null, "type": { "kind": "SCALAR", @@ -46824,11 +73724,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_GT", + "name": "oncotreeCode_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46836,11 +73736,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_GTE", + "name": "oncotreeCode_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46848,23 +73748,27 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_LONGEST_EQUAL", + "name": "oncotreeCode_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal_LONGEST_GT", + "name": "oncotreeCode_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46872,11 +73776,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_LONGEST_GTE", + "name": "oncotreeCode_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46884,11 +73788,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_LONGEST_LT", + "name": "preservation", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46896,11 +73800,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_LONGEST_LTE", + "name": "preservation_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46908,11 +73812,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_LT", + "name": "preservation_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46920,23 +73824,27 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_LTE", + "name": "preservation_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_EQUAL", + "name": "preservation_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46944,11 +73852,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_GT", + "name": "preservation_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46956,11 +73864,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_GTE", + "name": "preservation_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -46968,128 +73876,83 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_LT", + "name": "preservation_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_LTE", + "name": "preservation_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleHasMetadataSampleMetadataRelationship", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "preservation_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "primaryId", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadata", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "primaryId_CONTAINS", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataUpdateInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "primaryId_ENDS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "primaryId_IN", "description": null, "type": { "kind": "LIST", @@ -47098,8 +73961,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataCreateFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -47109,51 +73972,35 @@ "deprecationReason": null }, { - "name": "delete", + "name": "primaryId_NOT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "primaryId_NOT_CONTAINS", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "primaryId_NOT_ENDS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataUpdateConnectionInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -47161,703 +74008,414 @@ "deprecationReason": null }, { - "name": "where", + "name": "primaryId_NOT_IN", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadata", - "description": null, - "fields": [ + }, { - "name": "additionalProperties", + "name": "primaryId_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet", + "name": "primaryId_STARTS_WITH", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode", + "name": "qcReports", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId", + "name": "qcReports_CONTAINS", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId", + "name": "qcReports_ENDS_WITH", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields", + "name": "qcReports_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName", + "name": "qcReports_NOT", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear", + "name": "qcReports_NOT_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "qcReports_NOT_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatuses", + "name": "qcReports_NOT_IN", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatusesAggregate", + "name": "qcReports_NOT_STARTS_WITH", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SampleMetadataStatusHasStatusStatusesAggregationSelection", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatusesConnection", + "name": "qcReports_STARTS_WITH", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadataHasStatusStatusesConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoComplete", + "name": "sampleClass", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "sampleClass_CONTAINS", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "sampleClass_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "sampleClass_IN", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraries", + "name": "sampleClass_NOT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "sampleClass_NOT_CONTAINS", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation", + "name": "sampleClass_NOT_ENDS_WITH", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId", + "name": "sampleClass_NOT_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports", + "name": "sampleClass_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "sampleClass_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "sampleName", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin", + "name": "sampleName_CONTAINS", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType", + "name": "sampleName_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata", + "name": "sampleName_IN", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadataAggregate", + "name": "sampleName_NOT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "SampleMetadataSampleSamplesHasMetadataAggregationSelection", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadataConnection", + "name": "sampleName_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleName_NOT_ENDS_WITH", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex", + "name": "sampleName_NOT_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -47865,15 +74423,75 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species", + "name": "sampleName_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleName_STARTS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleOrigin", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleOrigin_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleOrigin_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleOrigin_IN", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -47881,39 +74499,51 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation", + "name": "sampleOrigin_NOT", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId", + "name": "sampleOrigin_NOT_CONTAINS", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "sampleOrigin_NOT_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleOrigin_NOT_IN", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -47921,486 +74551,452 @@ "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadataAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "additionalProperties", + "name": "sampleOrigin_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet", + "name": "sampleOrigin_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode", + "name": "sampleType", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId", + "name": "sampleType_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId", + "name": "sampleType_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields", + "name": "sampleType_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName", + "name": "sampleType_NOT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear", + "name": "sampleType_NOT_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "sampleType_NOT_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "sampleType_NOT_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "sampleType_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "sampleType_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "samplesHasMetadataAggregate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraries", + "name": "samplesHasMetadataConnection_ALL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "samplesHasMetadataConnection_NONE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation", + "name": "samplesHasMetadataConnection_SINGLE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId", + "name": "samplesHasMetadataConnection_SOME", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports", + "name": "samplesHasMetadata_ALL", + "description": "Return SampleMetadata where all of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasMetadata_NONE", + "description": "Return SampleMetadata where none of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasMetadata_SINGLE", + "description": "Return SampleMetadata where one of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasMetadata_SOME", + "description": "Return SampleMetadata where some of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sex", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "sex_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName", + "name": "sex_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin", + "name": "sex_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType", + "name": "sex_NOT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sex_NOT_CONTAINS", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sex_NOT_ENDS_WITH", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex", + "name": "sex_NOT_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species", + "name": "sex_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation", + "name": "sex_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId", + "name": "species", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "species_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "species_ENDS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata", + "name": "species_IN", "description": null, "type": { "kind": "LIST", @@ -48409,8 +75005,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -48418,130 +75014,77 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "species_NOT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadataConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "species_NOT_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadataEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "species_NOT_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "species_NOT_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "additionalProperties", + "name": "species_NOT_STARTS_WITH", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet", + "name": "species_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -48553,7 +75096,7 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode", + "name": "tissueLocation", "description": null, "type": { "kind": "SCALAR", @@ -48565,7 +75108,7 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId", + "name": "tissueLocation_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -48577,7 +75120,7 @@ "deprecationReason": null }, { - "name": "cmoPatientId", + "name": "tissueLocation_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -48589,10 +75132,10 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields", + "name": "tissueLocation_IN", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -48605,7 +75148,7 @@ "deprecationReason": null }, { - "name": "cmoSampleName", + "name": "tissueLocation_NOT", "description": null, "type": { "kind": "SCALAR", @@ -48617,26 +75160,34 @@ "deprecationReason": null }, { - "name": "collectionYear", + "name": "tissueLocation_NOT_CONTAINS", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "tissueLocation_NOT_ENDS_WITH", "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tissueLocation_NOT_IN", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -48649,11 +75200,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses", + "name": "tissueLocation_NOT_STARTS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -48661,11 +75212,11 @@ "deprecationReason": null }, { - "name": "igoComplete", + "name": "tissueLocation_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -48673,7 +75224,7 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "tubeId", "description": null, "type": { "kind": "SCALAR", @@ -48685,23 +75236,19 @@ "deprecationReason": null }, { - "name": "importDate", + "name": "tubeId_CONTAINS", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "tubeId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -48713,10 +75260,10 @@ "deprecationReason": null }, { - "name": "libraries", + "name": "tubeId_IN", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -48729,7 +75276,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "tubeId_NOT", "description": null, "type": { "kind": "SCALAR", @@ -48741,7 +75288,7 @@ "deprecationReason": null }, { - "name": "preservation", + "name": "tubeId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -48753,26 +75300,22 @@ "deprecationReason": null }, { - "name": "primaryId", + "name": "tubeId_NOT_ENDS_WITH", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports", + "name": "tubeId_NOT_IN", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -48785,23 +75328,19 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "tubeId_NOT_STARTS_WITH", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName", + "name": "tubeId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -48813,7 +75352,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin", + "name": "tumorOrNormal", "description": null, "type": { "kind": "SCALAR", @@ -48825,27 +75364,23 @@ "deprecationReason": null }, { - "name": "sampleType", + "name": "tumorOrNormal_CONTAINS", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata", + "name": "tumorOrNormal_ENDS_WITH", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -48853,15 +75388,19 @@ "deprecationReason": null }, { - "name": "sex", + "name": "tumorOrNormal_IN", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, @@ -48869,23 +75408,19 @@ "deprecationReason": null }, { - "name": "species", + "name": "tumorOrNormal_NOT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation", + "name": "tumorOrNormal_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", @@ -48897,7 +75432,7 @@ "deprecationReason": null }, { - "name": "tubeId", + "name": "tumorOrNormal_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", @@ -48909,67 +75444,44 @@ "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "tumorOrNormal_NOT_IN", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataDeleteInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "tumorOrNormal_NOT_STARTS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata", + "name": "tumorOrNormal_STARTS_WITH", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -48982,33 +75494,37 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataDisconnectInput", + "name": "SampleOptions", "description": null, "fields": null, "inputFields": [ { - "name": "hasStatusStatuses", + "name": "limit", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata", + "name": "offset", "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": "Specify one or more SampleSort objects to sort Samples by. The sorts will be applied in the order in which they are arranged in the array.", "type": { "kind": "LIST", "name": null, @@ -49017,7 +75533,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataDisconnectFieldInput", + "name": "SampleSort", "ofType": null } } @@ -49033,11 +75549,11 @@ }, { "kind": "OBJECT", - "name": "SampleMetadataEdge", + "name": "SamplePatientPatientsHasSampleAggregationSelection", "description": null, "fields": [ { - "name": "cursor", + "name": "count", "description": null, "args": [], "type": { @@ -49045,7 +75561,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -49056,12 +75572,35 @@ "name": "node", "description": null, "args": [], + "type": { + "kind": "OBJECT", + "name": "SamplePatientPatientsHasSampleNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SamplePatientPatientsHasSampleNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "smilePatientId", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "SampleMetadata", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -49076,7 +75615,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesAggregateInput", + "name": "SamplePatientsHasSampleAggregateInput", "description": null, "fields": null, "inputFields": [ @@ -49091,7 +75630,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesAggregateInput", + "name": "SamplePatientsHasSampleAggregateInput", "ofType": null } } @@ -49111,7 +75650,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesAggregateInput", + "name": "SamplePatientsHasSampleAggregateInput", "ofType": null } } @@ -49185,7 +75724,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "SamplePatientsHasSampleNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, @@ -49199,7 +75738,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectFieldInput", + "name": "SamplePatientsHasSampleConnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -49214,7 +75753,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusConnectInput", + "name": "PatientConnectInput", "ofType": null } } @@ -49228,7 +75767,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusConnectWhere", + "name": "PatientConnectWhere", "ofType": null }, "defaultValue": null, @@ -49242,7 +75781,7 @@ }, { "kind": "OBJECT", - "name": "SampleMetadataHasStatusStatusesConnection", + "name": "SamplePatientsHasSampleConnection", "description": null, "fields": [ { @@ -49260,7 +75799,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SampleMetadataHasStatusStatusesRelationship", + "name": "SamplePatientsHasSampleRelationship", "ofType": null } } @@ -49309,7 +75848,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionSort", + "name": "SamplePatientsHasSampleConnectionSort", "description": null, "fields": null, "inputFields": [ @@ -49318,7 +75857,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSort", + "name": "PatientSort", "ofType": null }, "defaultValue": null, @@ -49332,7 +75871,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "name": "SamplePatientsHasSampleConnectionWhere", "description": null, "fields": null, "inputFields": [ @@ -49347,7 +75886,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "name": "SamplePatientsHasSampleConnectionWhere", "ofType": null } } @@ -49367,7 +75906,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "name": "SamplePatientsHasSampleConnectionWhere", "ofType": null } } @@ -49381,7 +75920,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "PatientWhere", "ofType": null }, "defaultValue": null, @@ -49393,7 +75932,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "PatientWhere", "ofType": null }, "defaultValue": null, @@ -49407,7 +75946,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesCreateFieldInput", + "name": "SamplePatientsHasSampleCreateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -49419,7 +75958,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusCreateInput", + "name": "PatientCreateInput", "ofType": null } }, @@ -49434,7 +75973,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesDeleteFieldInput", + "name": "SamplePatientsHasSampleDeleteFieldInput", "description": null, "fields": null, "inputFields": [ @@ -49443,7 +75982,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusDeleteInput", + "name": "PatientDeleteInput", "ofType": null }, "defaultValue": null, @@ -49455,7 +75994,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "name": "SamplePatientsHasSampleConnectionWhere", "ofType": null }, "defaultValue": null, @@ -49469,7 +76008,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesDisconnectFieldInput", + "name": "SamplePatientsHasSampleDisconnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -49478,7 +76017,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusDisconnectInput", + "name": "PatientDisconnectInput", "ofType": null }, "defaultValue": null, @@ -49490,7 +76029,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "name": "SamplePatientsHasSampleConnectionWhere", "ofType": null }, "defaultValue": null, @@ -49504,7 +76043,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesFieldInput", + "name": "SamplePatientsHasSampleFieldInput", "description": null, "fields": null, "inputFields": [ @@ -49519,7 +76058,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectFieldInput", + "name": "SamplePatientsHasSampleConnectFieldInput", "ofType": null } } @@ -49539,7 +76078,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesCreateFieldInput", + "name": "SamplePatientsHasSampleCreateFieldInput", "ofType": null } } @@ -49555,7 +76094,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "SamplePatientsHasSampleNodeAggregationWhereInput", "description": null, "fields": null, "inputFields": [ @@ -49570,7 +76109,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "SamplePatientsHasSampleNodeAggregationWhereInput", "ofType": null } } @@ -49590,7 +76129,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesNodeAggregationWhereInput", + "name": "SamplePatientsHasSampleNodeAggregationWhereInput", "ofType": null } } @@ -49600,7 +76139,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_EQUAL", + "name": "smilePatientId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -49612,7 +76151,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_GT", + "name": "smilePatientId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -49624,7 +76163,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_GTE", + "name": "smilePatientId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -49636,7 +76175,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_LT", + "name": "smilePatientId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -49648,7 +76187,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_LTE", + "name": "smilePatientId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -49660,7 +76199,7 @@ "deprecationReason": null }, { - "name": "validationReport_EQUAL", + "name": "smilePatientId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -49672,7 +76211,7 @@ "deprecationReason": null }, { - "name": "validationReport_GT", + "name": "smilePatientId_GT", "description": null, "type": { "kind": "SCALAR", @@ -49684,7 +76223,7 @@ "deprecationReason": null }, { - "name": "validationReport_GTE", + "name": "smilePatientId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -49696,7 +76235,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_EQUAL", + "name": "smilePatientId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -49708,7 +76247,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_GT", + "name": "smilePatientId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -49720,7 +76259,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_GTE", + "name": "smilePatientId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -49732,7 +76271,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_LT", + "name": "smilePatientId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -49744,7 +76283,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_LTE", + "name": "smilePatientId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -49756,7 +76295,7 @@ "deprecationReason": null }, { - "name": "validationReport_LT", + "name": "smilePatientId_LT", "description": null, "type": { "kind": "SCALAR", @@ -49768,7 +76307,7 @@ "deprecationReason": null }, { - "name": "validationReport_LTE", + "name": "smilePatientId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -49780,7 +76319,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_EQUAL", + "name": "smilePatientId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -49792,7 +76331,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_GT", + "name": "smilePatientId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -49804,7 +76343,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_GTE", + "name": "smilePatientId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -49816,7 +76355,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_LT", + "name": "smilePatientId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -49828,7 +76367,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_LTE", + "name": "smilePatientId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -49846,7 +76385,7 @@ }, { "kind": "OBJECT", - "name": "SampleMetadataHasStatusStatusesRelationship", + "name": "SamplePatientsHasSampleRelationship", "description": null, "fields": [ { @@ -49874,7 +76413,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Status", + "name": "Patient", "ofType": null } }, @@ -49889,7 +76428,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesUpdateConnectionInput", + "name": "SamplePatientsHasSampleUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ @@ -49898,7 +76437,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusUpdateInput", + "name": "PatientUpdateInput", "ofType": null }, "defaultValue": null, @@ -49912,7 +76451,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesUpdateFieldInput", + "name": "SamplePatientsHasSampleUpdateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -49927,7 +76466,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectFieldInput", + "name": "SamplePatientsHasSampleConnectFieldInput", "ofType": null } } @@ -49947,7 +76486,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesCreateFieldInput", + "name": "SamplePatientsHasSampleCreateFieldInput", "ofType": null } } @@ -49967,7 +76506,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesDeleteFieldInput", + "name": "SamplePatientsHasSampleDeleteFieldInput", "ofType": null } } @@ -49987,7 +76526,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesDisconnectFieldInput", + "name": "SamplePatientsHasSampleDisconnectFieldInput", "ofType": null } } @@ -50001,151 +76540,423 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesUpdateConnectionInput", + "name": "SamplePatientsHasSampleUpdateConnectionInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleConnectionWhere", "ofType": null }, - "defaultValue": null, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleRelationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cohortsHasCohortSample", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataSampleMetadata", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasTempoTempos", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "patientsHasSample", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasSample", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleAliasesIsAlias", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleRequestRequestsHasSampleAggregationSelection", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SampleRequestRequestsHasSampleNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleRequestRequestsHasSampleNodeAggregateSelection", + "description": null, + "fields": [ + { + "name": "dataAccessEmails", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystEmail", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAnalystName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "genePanel", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoProjectId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigatorEmail", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "investigatorName", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataOptions", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "limit", + "name": "labHeadEmail", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "offset", + "name": "labHeadName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more SampleMetadataSort objects to sort SampleMetadata by. The sorts will be applied in the order in which they are arranged in the array.", + "name": "libraryType", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSort", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataRelationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "namespace", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesCreateFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata", + "name": "otherContactEmails", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadataSampleSamplesHasMetadataAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "piEmail", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -50153,30 +76964,23 @@ "deprecationReason": null }, { - "name": "node", + "name": "projectManagerName", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "SampleMetadataSampleSamplesHasMetadataNodeAggregateSelection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadataSampleSamplesHasMetadataNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "datasource", + "name": "qcAccessEmails", "description": null, "args": [], "type": { @@ -50192,7 +76996,7 @@ "deprecationReason": null }, { - "name": "sampleCategory", + "name": "requestJson", "description": null, "args": [], "type": { @@ -50208,7 +77012,7 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "smileRequestId", "description": null, "args": [], "type": { @@ -50224,7 +77028,7 @@ "deprecationReason": null }, { - "name": "smileSampleId", + "name": "strand", "description": null, "args": [], "type": { @@ -50232,7 +77036,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", + "name": "StringAggregateSelectionNullable", "ofType": null } }, @@ -50247,7 +77051,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "name": "SampleRequestsHasSampleAggregateInput", "description": null, "fields": null, "inputFields": [ @@ -50262,7 +77066,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "name": "SampleRequestsHasSampleAggregateInput", "ofType": null } } @@ -50282,7 +77086,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "name": "SampleRequestsHasSampleAggregateInput", "ofType": null } } @@ -50356,7 +77160,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", + "name": "SampleRequestsHasSampleNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, @@ -50370,7 +77174,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", + "name": "SampleRequestsHasSampleConnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -50385,7 +77189,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleConnectInput", + "name": "RequestConnectInput", "ofType": null } } @@ -50399,7 +77203,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleConnectWhere", + "name": "RequestConnectWhere", "ofType": null }, "defaultValue": null, @@ -50413,7 +77217,7 @@ }, { "kind": "OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnection", + "name": "SampleRequestsHasSampleConnection", "description": null, "fields": [ { @@ -50431,7 +77235,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SampleMetadataSamplesHasMetadataRelationship", + "name": "SampleRequestsHasSampleRelationship", "ofType": null } } @@ -50480,7 +77284,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionSort", + "name": "SampleRequestsHasSampleConnectionSort", "description": null, "fields": null, "inputFields": [ @@ -50489,7 +77293,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleSort", + "name": "RequestSort", "ofType": null }, "defaultValue": null, @@ -50503,7 +77307,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "name": "SampleRequestsHasSampleConnectionWhere", "description": null, "fields": null, "inputFields": [ @@ -50518,7 +77322,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "name": "SampleRequestsHasSampleConnectionWhere", "ofType": null } } @@ -50538,7 +77342,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "name": "SampleRequestsHasSampleConnectionWhere", "ofType": null } } @@ -50552,7 +77356,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -50564,7 +77368,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -50578,7 +77382,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", + "name": "SampleRequestsHasSampleCreateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -50590,7 +77394,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleCreateInput", + "name": "RequestCreateInput", "ofType": null } }, @@ -50605,7 +77409,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataDeleteFieldInput", + "name": "SampleRequestsHasSampleDeleteFieldInput", "description": null, "fields": null, "inputFields": [ @@ -50614,7 +77418,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", + "name": "RequestDeleteInput", "ofType": null }, "defaultValue": null, @@ -50626,7 +77430,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "name": "SampleRequestsHasSampleConnectionWhere", "ofType": null }, "defaultValue": null, @@ -50640,16 +77444,310 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataDisconnectFieldInput", + "name": "SampleRequestsHasSampleDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestDisconnectInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleFieldInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "create", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleCreateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleNodeAggregationWhereInput", "description": null, "fields": null, "inputFields": [ { - "name": "disconnect", + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleNodeAggregationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataAccessEmails_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleDisconnectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -50657,121 +77755,67 @@ "deprecationReason": null }, { - "name": "where", + "name": "dataAccessEmails_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "dataAccessEmails_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "dataAccessEmails_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "dataAccessEmails_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "dataAccessEmails_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_AVERAGE_EQUAL", + "name": "dataAnalystEmail_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -50783,7 +77827,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GT", + "name": "dataAnalystEmail_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -50795,7 +77839,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GTE", + "name": "dataAnalystEmail_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -50807,7 +77851,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LT", + "name": "dataAnalystEmail_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -50819,7 +77863,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LTE", + "name": "dataAnalystEmail_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -50831,7 +77875,7 @@ "deprecationReason": null }, { - "name": "datasource_EQUAL", + "name": "dataAnalystEmail_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -50843,7 +77887,7 @@ "deprecationReason": null }, { - "name": "datasource_GT", + "name": "dataAnalystEmail_GT", "description": null, "type": { "kind": "SCALAR", @@ -50855,7 +77899,7 @@ "deprecationReason": null }, { - "name": "datasource_GTE", + "name": "dataAnalystEmail_GTE", "description": null, "type": { "kind": "SCALAR", @@ -50867,7 +77911,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_EQUAL", + "name": "dataAnalystEmail_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -50879,7 +77923,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GT", + "name": "dataAnalystEmail_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -50891,7 +77935,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GTE", + "name": "dataAnalystEmail_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -50903,7 +77947,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LT", + "name": "dataAnalystEmail_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -50915,7 +77959,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LTE", + "name": "dataAnalystEmail_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -50927,7 +77971,7 @@ "deprecationReason": null }, { - "name": "datasource_LT", + "name": "dataAnalystEmail_LT", "description": null, "type": { "kind": "SCALAR", @@ -50939,7 +77983,7 @@ "deprecationReason": null }, { - "name": "datasource_LTE", + "name": "dataAnalystEmail_LTE", "description": null, "type": { "kind": "SCALAR", @@ -50951,7 +77995,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_EQUAL", + "name": "dataAnalystEmail_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -50963,7 +78007,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GT", + "name": "dataAnalystEmail_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -50975,7 +78019,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GTE", + "name": "dataAnalystEmail_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -50987,7 +78031,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LT", + "name": "dataAnalystEmail_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -50999,7 +78043,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LTE", + "name": "dataAnalystEmail_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51011,7 +78055,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_EQUAL", + "name": "dataAnalystName_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51023,7 +78067,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GT", + "name": "dataAnalystName_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -51035,7 +78079,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GTE", + "name": "dataAnalystName_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51047,7 +78091,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LT", + "name": "dataAnalystName_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -51059,7 +78103,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LTE", + "name": "dataAnalystName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51071,7 +78115,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_EQUAL", + "name": "dataAnalystName_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51083,7 +78127,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GT", + "name": "dataAnalystName_GT", "description": null, "type": { "kind": "SCALAR", @@ -51095,7 +78139,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GTE", + "name": "dataAnalystName_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51107,7 +78151,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_EQUAL", + "name": "dataAnalystName_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51119,7 +78163,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GT", + "name": "dataAnalystName_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -51131,7 +78175,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GTE", + "name": "dataAnalystName_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51143,7 +78187,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LT", + "name": "dataAnalystName_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -51155,7 +78199,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LTE", + "name": "dataAnalystName_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51167,7 +78211,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LT", + "name": "dataAnalystName_LT", "description": null, "type": { "kind": "SCALAR", @@ -51179,7 +78223,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LTE", + "name": "dataAnalystName_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51191,7 +78235,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_EQUAL", + "name": "dataAnalystName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51203,7 +78247,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GT", + "name": "dataAnalystName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -51215,7 +78259,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GTE", + "name": "dataAnalystName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51227,7 +78271,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LT", + "name": "dataAnalystName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -51239,7 +78283,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LTE", + "name": "dataAnalystName_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51251,7 +78295,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_EQUAL", + "name": "genePanel_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51263,7 +78307,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GT", + "name": "genePanel_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -51275,7 +78319,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GTE", + "name": "genePanel_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51287,7 +78331,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LT", + "name": "genePanel_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -51299,7 +78343,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LTE", + "name": "genePanel_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51311,7 +78355,7 @@ "deprecationReason": null }, { - "name": "sampleClass_EQUAL", + "name": "genePanel_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51323,7 +78367,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GT", + "name": "genePanel_GT", "description": null, "type": { "kind": "SCALAR", @@ -51335,7 +78379,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GTE", + "name": "genePanel_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51347,7 +78391,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_EQUAL", + "name": "genePanel_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51359,7 +78403,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GT", + "name": "genePanel_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -51371,7 +78415,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GTE", + "name": "genePanel_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51383,7 +78427,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LT", + "name": "genePanel_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -51395,7 +78439,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LTE", + "name": "genePanel_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51407,7 +78451,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LT", + "name": "genePanel_LT", "description": null, "type": { "kind": "SCALAR", @@ -51419,7 +78463,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LTE", + "name": "genePanel_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51431,7 +78475,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_EQUAL", + "name": "genePanel_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51443,7 +78487,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GT", + "name": "genePanel_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -51455,7 +78499,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GTE", + "name": "genePanel_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51467,7 +78511,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LT", + "name": "genePanel_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -51479,7 +78523,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LTE", + "name": "genePanel_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51491,7 +78535,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_EQUAL", + "name": "igoProjectId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51503,7 +78547,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GT", + "name": "igoProjectId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -51515,7 +78559,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_GTE", + "name": "igoProjectId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51527,7 +78571,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_LT", + "name": "igoProjectId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -51539,7 +78583,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_AVERAGE_LTE", + "name": "igoProjectId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51551,7 +78595,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_EQUAL", + "name": "igoProjectId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51563,7 +78607,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_GT", + "name": "igoProjectId_GT", "description": null, "type": { "kind": "SCALAR", @@ -51575,7 +78619,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_GTE", + "name": "igoProjectId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51587,7 +78631,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_EQUAL", + "name": "igoProjectId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51599,7 +78643,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GT", + "name": "igoProjectId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -51611,7 +78655,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GTE", + "name": "igoProjectId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51623,7 +78667,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LT", + "name": "igoProjectId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -51635,7 +78679,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LTE", + "name": "igoProjectId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51647,7 +78691,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LT", + "name": "igoProjectId_LT", "description": null, "type": { "kind": "SCALAR", @@ -51659,7 +78703,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LTE", + "name": "igoProjectId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51671,7 +78715,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_EQUAL", + "name": "igoProjectId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -51683,7 +78727,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GT", + "name": "igoProjectId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -51695,7 +78739,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GTE", + "name": "igoProjectId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -51707,7 +78751,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LT", + "name": "igoProjectId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -51719,7 +78763,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LTE", + "name": "igoProjectId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -51729,170 +78773,37 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadataSamplesHasMetadataRelationship", - "description": null, - "fields": [ - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Sample", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "node", + "name": "igoRequestId_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleUpdateInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "create", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataCreateFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "delete", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataDeleteFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "disconnect", + "name": "igoRequestId_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "igoRequestId_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataUpdateConnectionInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -51900,34 +78811,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "igoRequestId_AVERAGE_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSort", - "description": "Fields to sort SampleMetadata by. The order in which sorts are applied is not guaranteed when specifying many fields in one SampleMetadataSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "additionalProperties", + "name": "igoRequestId_AVERAGE_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -51935,11 +78835,11 @@ "deprecationReason": null }, { - "name": "baitSet", + "name": "igoRequestId_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -51947,11 +78847,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode", + "name": "igoRequestId_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -51959,11 +78859,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId", + "name": "igoRequestId_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -51971,11 +78871,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId", + "name": "igoRequestId_LONGEST_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -51983,11 +78883,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields", + "name": "igoRequestId_LONGEST_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -51995,11 +78895,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName", + "name": "igoRequestId_LONGEST_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52007,11 +78907,11 @@ "deprecationReason": null }, { - "name": "collectionYear", + "name": "igoRequestId_LONGEST_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52019,11 +78919,11 @@ "deprecationReason": null }, { - "name": "genePanel", + "name": "igoRequestId_LONGEST_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52031,11 +78931,11 @@ "deprecationReason": null }, { - "name": "igoComplete", + "name": "igoRequestId_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52043,11 +78943,11 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "igoRequestId_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52055,11 +78955,11 @@ "deprecationReason": null }, { - "name": "importDate", + "name": "igoRequestId_SHORTEST_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52067,11 +78967,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "igoRequestId_SHORTEST_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52079,11 +78979,11 @@ "deprecationReason": null }, { - "name": "libraries", + "name": "igoRequestId_SHORTEST_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52091,11 +78991,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "igoRequestId_SHORTEST_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52103,11 +79003,11 @@ "deprecationReason": null }, { - "name": "preservation", + "name": "igoRequestId_SHORTEST_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52115,11 +79015,11 @@ "deprecationReason": null }, { - "name": "primaryId", + "name": "investigatorEmail_AVERAGE_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52127,11 +79027,11 @@ "deprecationReason": null }, { - "name": "qcReports", + "name": "investigatorEmail_AVERAGE_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52139,11 +79039,11 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "investigatorEmail_AVERAGE_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52151,11 +79051,11 @@ "deprecationReason": null }, { - "name": "sampleName", + "name": "investigatorEmail_AVERAGE_LT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52163,11 +79063,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin", + "name": "investigatorEmail_AVERAGE_LTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52175,11 +79075,11 @@ "deprecationReason": null }, { - "name": "sampleType", + "name": "investigatorEmail_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -52187,11 +79087,11 @@ "deprecationReason": null }, { - "name": "sex", + "name": "investigatorEmail_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52199,11 +79099,11 @@ "deprecationReason": null }, { - "name": "species", + "name": "investigatorEmail_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52211,11 +79111,11 @@ "deprecationReason": null }, { - "name": "tissueLocation", + "name": "investigatorEmail_LONGEST_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52223,11 +79123,11 @@ "deprecationReason": null }, { - "name": "tubeId", + "name": "investigatorEmail_LONGEST_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52235,100 +79135,59 @@ "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "investigatorEmail_LONGEST_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadataStatusHasStatusStatusesAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "investigatorEmail_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "investigatorEmail_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SampleMetadataStatusHasStatusStatusesNodeAggregateSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleMetadataStatusHasStatusStatusesNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "validationReport", + "name": "investigatorEmail_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "additionalProperties", + "name": "investigatorEmail_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52336,11 +79195,11 @@ "deprecationReason": null }, { - "name": "baitSet", + "name": "investigatorEmail_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52348,11 +79207,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode", + "name": "investigatorEmail_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52360,11 +79219,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId", + "name": "investigatorEmail_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52372,11 +79231,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId", + "name": "investigatorEmail_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52384,11 +79243,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields", + "name": "investigatorEmail_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52396,11 +79255,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName", + "name": "investigatorName_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52408,11 +79267,11 @@ "deprecationReason": null }, { - "name": "collectionYear", + "name": "investigatorName_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52420,11 +79279,11 @@ "deprecationReason": null }, { - "name": "genePanel", + "name": "investigatorName_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52432,31 +79291,23 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses", + "name": "investigatorName_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoComplete", + "name": "investigatorName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52464,7 +79315,7 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "investigatorName_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -52476,11 +79327,11 @@ "deprecationReason": null }, { - "name": "importDate", + "name": "investigatorName_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52488,11 +79339,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "investigatorName_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52500,11 +79351,11 @@ "deprecationReason": null }, { - "name": "libraries", + "name": "investigatorName_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52512,11 +79363,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "investigatorName_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52524,11 +79375,11 @@ "deprecationReason": null }, { - "name": "preservation", + "name": "investigatorName_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52536,11 +79387,11 @@ "deprecationReason": null }, { - "name": "primaryId", + "name": "investigatorName_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52548,11 +79399,11 @@ "deprecationReason": null }, { - "name": "qcReports", + "name": "investigatorName_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52560,11 +79411,11 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "investigatorName_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52572,11 +79423,11 @@ "deprecationReason": null }, { - "name": "sampleName", + "name": "investigatorName_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52584,11 +79435,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin", + "name": "investigatorName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52596,11 +79447,11 @@ "deprecationReason": null }, { - "name": "sampleType", + "name": "investigatorName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52608,31 +79459,23 @@ "deprecationReason": null }, { - "name": "samplesHasMetadata", + "name": "investigatorName_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex", + "name": "investigatorName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52640,11 +79483,11 @@ "deprecationReason": null }, { - "name": "species", + "name": "investigatorName_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52652,11 +79495,11 @@ "deprecationReason": null }, { - "name": "tissueLocation", + "name": "labHeadEmail_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52664,11 +79507,11 @@ "deprecationReason": null }, { - "name": "tubeId", + "name": "labHeadEmail_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52676,70 +79519,43 @@ "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "labHeadEmail_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "labHeadEmail_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "labHeadEmail_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties", + "name": "labHeadEmail_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -52751,11 +79567,11 @@ "deprecationReason": null }, { - "name": "additionalProperties_CONTAINS", + "name": "labHeadEmail_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52763,11 +79579,11 @@ "deprecationReason": null }, { - "name": "additionalProperties_ENDS_WITH", + "name": "labHeadEmail_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52775,31 +79591,23 @@ "deprecationReason": null }, { - "name": "additionalProperties_IN", + "name": "labHeadEmail_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_NOT", + "name": "labHeadEmail_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52807,11 +79615,11 @@ "deprecationReason": null }, { - "name": "additionalProperties_NOT_CONTAINS", + "name": "labHeadEmail_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52819,11 +79627,11 @@ "deprecationReason": null }, { - "name": "additionalProperties_NOT_ENDS_WITH", + "name": "labHeadEmail_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52831,31 +79639,23 @@ "deprecationReason": null }, { - "name": "additionalProperties_NOT_IN", + "name": "labHeadEmail_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_NOT_STARTS_WITH", + "name": "labHeadEmail_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52863,11 +79663,11 @@ "deprecationReason": null }, { - "name": "additionalProperties_STARTS_WITH", + "name": "labHeadEmail_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52875,11 +79675,11 @@ "deprecationReason": null }, { - "name": "baitSet", + "name": "labHeadEmail_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52887,11 +79687,11 @@ "deprecationReason": null }, { - "name": "baitSet_CONTAINS", + "name": "labHeadEmail_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52899,11 +79699,11 @@ "deprecationReason": null }, { - "name": "baitSet_ENDS_WITH", + "name": "labHeadEmail_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52911,27 +79711,23 @@ "deprecationReason": null }, { - "name": "baitSet_IN", + "name": "labHeadEmail_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_NOT", + "name": "labHeadEmail_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -52939,11 +79735,11 @@ "deprecationReason": null }, { - "name": "baitSet_NOT_CONTAINS", + "name": "labHeadName_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52951,11 +79747,11 @@ "deprecationReason": null }, { - "name": "baitSet_NOT_ENDS_WITH", + "name": "labHeadName_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52963,27 +79759,23 @@ "deprecationReason": null }, { - "name": "baitSet_NOT_IN", + "name": "labHeadName_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_NOT_STARTS_WITH", + "name": "labHeadName_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -52991,11 +79783,11 @@ "deprecationReason": null }, { - "name": "baitSet_STARTS_WITH", + "name": "labHeadName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53003,7 +79795,7 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode", + "name": "labHeadName_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -53015,11 +79807,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_CONTAINS", + "name": "labHeadName_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53027,11 +79819,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_ENDS_WITH", + "name": "labHeadName_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53039,27 +79831,23 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_IN", + "name": "labHeadName_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_NOT", + "name": "labHeadName_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53067,11 +79855,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_NOT_CONTAINS", + "name": "labHeadName_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53079,11 +79867,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_NOT_ENDS_WITH", + "name": "labHeadName_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53091,27 +79879,23 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_NOT_IN", + "name": "labHeadName_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_NOT_STARTS_WITH", + "name": "labHeadName_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53119,11 +79903,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_STARTS_WITH", + "name": "labHeadName_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53131,11 +79915,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId", + "name": "labHeadName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53143,11 +79927,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_CONTAINS", + "name": "labHeadName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53155,11 +79939,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_ENDS_WITH", + "name": "labHeadName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53167,27 +79951,23 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_IN", + "name": "labHeadName_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_NOT", + "name": "labHeadName_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53195,11 +79975,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_NOT_CONTAINS", + "name": "libraryType_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53207,11 +79987,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_NOT_ENDS_WITH", + "name": "libraryType_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53219,27 +79999,23 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_NOT_IN", + "name": "libraryType_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_NOT_STARTS_WITH", + "name": "libraryType_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53247,11 +80023,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_STARTS_WITH", + "name": "libraryType_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53259,7 +80035,7 @@ "deprecationReason": null }, { - "name": "cmoPatientId", + "name": "libraryType_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -53271,11 +80047,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_CONTAINS", + "name": "libraryType_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53283,11 +80059,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_ENDS_WITH", + "name": "libraryType_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53295,27 +80071,23 @@ "deprecationReason": null }, { - "name": "cmoPatientId_IN", + "name": "libraryType_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_NOT", + "name": "libraryType_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53323,11 +80095,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_NOT_CONTAINS", + "name": "libraryType_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53335,11 +80107,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_NOT_ENDS_WITH", + "name": "libraryType_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53347,27 +80119,23 @@ "deprecationReason": null }, { - "name": "cmoPatientId_NOT_IN", + "name": "libraryType_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_NOT_STARTS_WITH", + "name": "libraryType_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53375,11 +80143,11 @@ "deprecationReason": null }, { - "name": "cmoPatientId_STARTS_WITH", + "name": "libraryType_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53387,11 +80155,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields", + "name": "libraryType_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53399,11 +80167,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_CONTAINS", + "name": "libraryType_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53411,11 +80179,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_ENDS_WITH", + "name": "libraryType_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53423,31 +80191,23 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_IN", + "name": "libraryType_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_NOT", + "name": "libraryType_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53455,11 +80215,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_NOT_CONTAINS", + "name": "namespace_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53467,11 +80227,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_NOT_ENDS_WITH", + "name": "namespace_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53479,31 +80239,23 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_NOT_IN", + "name": "namespace_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_NOT_STARTS_WITH", + "name": "namespace_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53511,11 +80263,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_STARTS_WITH", + "name": "namespace_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53523,7 +80275,7 @@ "deprecationReason": null }, { - "name": "cmoSampleName", + "name": "namespace_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -53535,11 +80287,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_CONTAINS", + "name": "namespace_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53547,11 +80299,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_ENDS_WITH", + "name": "namespace_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53559,27 +80311,23 @@ "deprecationReason": null }, { - "name": "cmoSampleName_IN", + "name": "namespace_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_NOT", + "name": "namespace_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53587,11 +80335,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_NOT_CONTAINS", + "name": "namespace_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53599,11 +80347,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_NOT_ENDS_WITH", + "name": "namespace_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53611,27 +80359,23 @@ "deprecationReason": null }, { - "name": "cmoSampleName_NOT_IN", + "name": "namespace_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_NOT_STARTS_WITH", + "name": "namespace_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53639,11 +80383,11 @@ "deprecationReason": null }, { - "name": "cmoSampleName_STARTS_WITH", + "name": "namespace_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53651,11 +80395,11 @@ "deprecationReason": null }, { - "name": "collectionYear", + "name": "namespace_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53663,11 +80407,11 @@ "deprecationReason": null }, { - "name": "collectionYear_CONTAINS", + "name": "namespace_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53675,11 +80419,11 @@ "deprecationReason": null }, { - "name": "collectionYear_ENDS_WITH", + "name": "namespace_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53687,31 +80431,23 @@ "deprecationReason": null }, { - "name": "collectionYear_IN", + "name": "namespace_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear_NOT", + "name": "namespace_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53719,11 +80455,11 @@ "deprecationReason": null }, { - "name": "collectionYear_NOT_CONTAINS", + "name": "otherContactEmails_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53731,11 +80467,11 @@ "deprecationReason": null }, { - "name": "collectionYear_NOT_ENDS_WITH", + "name": "otherContactEmails_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53743,31 +80479,23 @@ "deprecationReason": null }, { - "name": "collectionYear_NOT_IN", + "name": "otherContactEmails_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear_NOT_STARTS_WITH", + "name": "otherContactEmails_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53775,11 +80503,11 @@ "deprecationReason": null }, { - "name": "collectionYear_STARTS_WITH", + "name": "otherContactEmails_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53787,7 +80515,7 @@ "deprecationReason": null }, { - "name": "genePanel", + "name": "otherContactEmails_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -53799,11 +80527,11 @@ "deprecationReason": null }, { - "name": "genePanel_CONTAINS", + "name": "otherContactEmails_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53811,11 +80539,11 @@ "deprecationReason": null }, { - "name": "genePanel_ENDS_WITH", + "name": "otherContactEmails_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53823,31 +80551,23 @@ "deprecationReason": null }, { - "name": "genePanel_IN", + "name": "otherContactEmails_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_NOT", + "name": "otherContactEmails_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53855,11 +80575,11 @@ "deprecationReason": null }, { - "name": "genePanel_NOT_CONTAINS", + "name": "otherContactEmails_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53867,11 +80587,11 @@ "deprecationReason": null }, { - "name": "genePanel_NOT_ENDS_WITH", + "name": "otherContactEmails_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53879,31 +80599,23 @@ "deprecationReason": null }, { - "name": "genePanel_NOT_IN", + "name": "otherContactEmails_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_NOT_STARTS_WITH", + "name": "otherContactEmails_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53911,11 +80623,11 @@ "deprecationReason": null }, { - "name": "genePanel_STARTS_WITH", + "name": "otherContactEmails_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53923,11 +80635,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesAggregate", + "name": "otherContactEmails_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53935,11 +80647,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_ALL", + "name": "otherContactEmails_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53947,11 +80659,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_NONE", + "name": "otherContactEmails_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53959,11 +80671,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_SINGLE", + "name": "otherContactEmails_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53971,11 +80683,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatusesConnection_SOME", + "name": "otherContactEmails_SHORTEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -53983,11 +80695,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_ALL", - "description": "Return SampleMetadata where all of the related Statuses match this filter", + "name": "piEmail_AVERAGE_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -53995,11 +80707,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_NONE", - "description": "Return SampleMetadata where none of the related Statuses match this filter", + "name": "piEmail_AVERAGE_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54007,11 +80719,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_SINGLE", - "description": "Return SampleMetadata where one of the related Statuses match this filter", + "name": "piEmail_AVERAGE_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54019,11 +80731,11 @@ "deprecationReason": null }, { - "name": "hasStatusStatuses_SOME", - "description": "Return SampleMetadata where some of the related Statuses match this filter", + "name": "piEmail_AVERAGE_LT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54031,11 +80743,11 @@ "deprecationReason": null }, { - "name": "igoComplete", + "name": "piEmail_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54043,11 +80755,11 @@ "deprecationReason": null }, { - "name": "igoComplete_NOT", + "name": "piEmail_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -54055,11 +80767,11 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "piEmail_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54067,11 +80779,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_CONTAINS", + "name": "piEmail_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54079,11 +80791,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_ENDS_WITH", + "name": "piEmail_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54091,27 +80803,23 @@ "deprecationReason": null }, { - "name": "igoRequestId_IN", + "name": "piEmail_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_NOT", + "name": "piEmail_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54119,11 +80827,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT_CONTAINS", + "name": "piEmail_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54131,11 +80839,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT_ENDS_WITH", + "name": "piEmail_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54143,27 +80851,23 @@ "deprecationReason": null }, { - "name": "igoRequestId_NOT_IN", + "name": "piEmail_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_NOT_STARTS_WITH", + "name": "piEmail_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54171,11 +80875,11 @@ "deprecationReason": null }, { - "name": "igoRequestId_STARTS_WITH", + "name": "piEmail_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54183,11 +80887,11 @@ "deprecationReason": null }, { - "name": "importDate", + "name": "piEmail_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54195,11 +80899,11 @@ "deprecationReason": null }, { - "name": "importDate_CONTAINS", + "name": "piEmail_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54207,11 +80911,11 @@ "deprecationReason": null }, { - "name": "importDate_ENDS_WITH", + "name": "piEmail_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54219,31 +80923,35 @@ "deprecationReason": null }, { - "name": "importDate_IN", + "name": "piEmail_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_NOT", + "name": "projectManagerName_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54251,11 +80959,11 @@ "deprecationReason": null }, { - "name": "importDate_NOT_CONTAINS", + "name": "projectManagerName_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54263,11 +80971,11 @@ "deprecationReason": null }, { - "name": "importDate_NOT_ENDS_WITH", + "name": "projectManagerName_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54275,27 +80983,19 @@ "deprecationReason": null }, { - "name": "importDate_NOT_IN", + "name": "projectManagerName_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_NOT_STARTS_WITH", + "name": "projectManagerName_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -54307,11 +81007,11 @@ "deprecationReason": null }, { - "name": "importDate_STARTS_WITH", + "name": "projectManagerName_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54319,11 +81019,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "projectManagerName_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54331,11 +81031,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_CONTAINS", + "name": "projectManagerName_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54343,11 +81043,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_ENDS_WITH", + "name": "projectManagerName_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54355,27 +81055,23 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_IN", + "name": "projectManagerName_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId_NOT", + "name": "projectManagerName_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54383,11 +81079,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_NOT_CONTAINS", + "name": "projectManagerName_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54395,11 +81091,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_NOT_ENDS_WITH", + "name": "projectManagerName_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54407,27 +81103,23 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_NOT_IN", + "name": "projectManagerName_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId_NOT_STARTS_WITH", + "name": "projectManagerName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54435,11 +81127,11 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_STARTS_WITH", + "name": "projectManagerName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54447,11 +81139,11 @@ "deprecationReason": null }, { - "name": "libraries", + "name": "projectManagerName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54459,11 +81151,11 @@ "deprecationReason": null }, { - "name": "libraries_CONTAINS", + "name": "projectManagerName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54471,11 +81163,11 @@ "deprecationReason": null }, { - "name": "libraries_ENDS_WITH", + "name": "projectManagerName_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54483,31 +81175,23 @@ "deprecationReason": null }, { - "name": "libraries_IN", + "name": "qcAccessEmails_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraries_NOT", + "name": "qcAccessEmails_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54515,11 +81199,11 @@ "deprecationReason": null }, { - "name": "libraries_NOT_CONTAINS", + "name": "qcAccessEmails_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54527,11 +81211,11 @@ "deprecationReason": null }, { - "name": "libraries_NOT_ENDS_WITH", + "name": "qcAccessEmails_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54539,27 +81223,19 @@ "deprecationReason": null }, { - "name": "libraries_NOT_IN", + "name": "qcAccessEmails_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraries_NOT_STARTS_WITH", + "name": "qcAccessEmails_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -54571,11 +81247,11 @@ "deprecationReason": null }, { - "name": "libraries_STARTS_WITH", + "name": "qcAccessEmails_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54583,11 +81259,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "qcAccessEmails_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54595,11 +81271,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode_CONTAINS", + "name": "qcAccessEmails_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54607,11 +81283,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode_ENDS_WITH", + "name": "qcAccessEmails_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54619,27 +81295,23 @@ "deprecationReason": null }, { - "name": "oncotreeCode_IN", + "name": "qcAccessEmails_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "oncotreeCode_NOT", + "name": "qcAccessEmails_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54647,11 +81319,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode_NOT_CONTAINS", + "name": "qcAccessEmails_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54659,11 +81331,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode_NOT_ENDS_WITH", + "name": "qcAccessEmails_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54671,27 +81343,23 @@ "deprecationReason": null }, { - "name": "oncotreeCode_NOT_IN", + "name": "qcAccessEmails_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "oncotreeCode_NOT_STARTS_WITH", + "name": "qcAccessEmails_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54699,11 +81367,11 @@ "deprecationReason": null }, { - "name": "oncotreeCode_STARTS_WITH", + "name": "qcAccessEmails_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54711,11 +81379,11 @@ "deprecationReason": null }, { - "name": "preservation", + "name": "qcAccessEmails_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54723,11 +81391,11 @@ "deprecationReason": null }, { - "name": "preservation_CONTAINS", + "name": "qcAccessEmails_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54735,11 +81403,11 @@ "deprecationReason": null }, { - "name": "preservation_ENDS_WITH", + "name": "qcAccessEmails_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54747,27 +81415,23 @@ "deprecationReason": null }, { - "name": "preservation_IN", + "name": "requestJson_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_NOT", + "name": "requestJson_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54775,11 +81439,11 @@ "deprecationReason": null }, { - "name": "preservation_NOT_CONTAINS", + "name": "requestJson_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54787,11 +81451,11 @@ "deprecationReason": null }, { - "name": "preservation_NOT_ENDS_WITH", + "name": "requestJson_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -54799,23 +81463,19 @@ "deprecationReason": null }, { - "name": "preservation_NOT_IN", + "name": "requestJson_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_NOT_STARTS_WITH", + "name": "requestJson_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -54827,11 +81487,11 @@ "deprecationReason": null }, { - "name": "preservation_STARTS_WITH", + "name": "requestJson_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54839,11 +81499,11 @@ "deprecationReason": null }, { - "name": "primaryId", + "name": "requestJson_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54851,11 +81511,11 @@ "deprecationReason": null }, { - "name": "primaryId_CONTAINS", + "name": "requestJson_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54863,11 +81523,11 @@ "deprecationReason": null }, { - "name": "primaryId_ENDS_WITH", + "name": "requestJson_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54875,31 +81535,23 @@ "deprecationReason": null }, { - "name": "primaryId_IN", + "name": "requestJson_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_NOT", + "name": "requestJson_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54907,11 +81559,11 @@ "deprecationReason": null }, { - "name": "primaryId_NOT_CONTAINS", + "name": "requestJson_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54919,11 +81571,11 @@ "deprecationReason": null }, { - "name": "primaryId_NOT_ENDS_WITH", + "name": "requestJson_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54931,31 +81583,23 @@ "deprecationReason": null }, { - "name": "primaryId_NOT_IN", + "name": "requestJson_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_NOT_STARTS_WITH", + "name": "requestJson_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54963,11 +81607,11 @@ "deprecationReason": null }, { - "name": "primaryId_STARTS_WITH", + "name": "requestJson_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54975,11 +81619,11 @@ "deprecationReason": null }, { - "name": "qcReports", + "name": "requestJson_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54987,11 +81631,11 @@ "deprecationReason": null }, { - "name": "qcReports_CONTAINS", + "name": "requestJson_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -54999,11 +81643,11 @@ "deprecationReason": null }, { - "name": "qcReports_ENDS_WITH", + "name": "requestJson_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55011,31 +81655,23 @@ "deprecationReason": null }, { - "name": "qcReports_IN", + "name": "smileRequestId_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports_NOT", + "name": "smileRequestId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -55043,11 +81679,11 @@ "deprecationReason": null }, { - "name": "qcReports_NOT_CONTAINS", + "name": "smileRequestId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -55055,11 +81691,11 @@ "deprecationReason": null }, { - "name": "qcReports_NOT_ENDS_WITH", + "name": "smileRequestId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -55067,27 +81703,19 @@ "deprecationReason": null }, { - "name": "qcReports_NOT_IN", + "name": "smileRequestId_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports_NOT_STARTS_WITH", + "name": "smileRequestId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -55099,11 +81727,11 @@ "deprecationReason": null }, { - "name": "qcReports_STARTS_WITH", + "name": "smileRequestId_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55111,11 +81739,11 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "smileRequestId_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55123,11 +81751,11 @@ "deprecationReason": null }, { - "name": "sampleClass_CONTAINS", + "name": "smileRequestId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55135,11 +81763,11 @@ "deprecationReason": null }, { - "name": "sampleClass_ENDS_WITH", + "name": "smileRequestId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55147,31 +81775,23 @@ "deprecationReason": null }, { - "name": "sampleClass_IN", + "name": "smileRequestId_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_NOT", + "name": "smileRequestId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55179,11 +81799,11 @@ "deprecationReason": null }, { - "name": "sampleClass_NOT_CONTAINS", + "name": "smileRequestId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55191,11 +81811,11 @@ "deprecationReason": null }, { - "name": "sampleClass_NOT_ENDS_WITH", + "name": "smileRequestId_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55203,31 +81823,23 @@ "deprecationReason": null }, { - "name": "sampleClass_NOT_IN", + "name": "smileRequestId_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_NOT_STARTS_WITH", + "name": "smileRequestId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55235,11 +81847,11 @@ "deprecationReason": null }, { - "name": "sampleClass_STARTS_WITH", + "name": "smileRequestId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55247,11 +81859,11 @@ "deprecationReason": null }, { - "name": "sampleName", + "name": "smileRequestId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55259,11 +81871,11 @@ "deprecationReason": null }, { - "name": "sampleName_CONTAINS", + "name": "smileRequestId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55271,11 +81883,11 @@ "deprecationReason": null }, { - "name": "sampleName_ENDS_WITH", + "name": "smileRequestId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55283,27 +81895,23 @@ "deprecationReason": null }, { - "name": "sampleName_IN", + "name": "strand_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName_NOT", + "name": "strand_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -55311,11 +81919,11 @@ "deprecationReason": null }, { - "name": "sampleName_NOT_CONTAINS", + "name": "strand_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -55323,11 +81931,11 @@ "deprecationReason": null }, { - "name": "sampleName_NOT_ENDS_WITH", + "name": "strand_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -55335,23 +81943,19 @@ "deprecationReason": null }, { - "name": "sampleName_NOT_IN", + "name": "strand_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName_NOT_STARTS_WITH", + "name": "strand_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -55363,11 +81967,11 @@ "deprecationReason": null }, { - "name": "sampleName_STARTS_WITH", + "name": "strand_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55375,11 +81979,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin", + "name": "strand_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55387,11 +81991,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_CONTAINS", + "name": "strand_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55399,11 +82003,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_ENDS_WITH", + "name": "strand_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55411,27 +82015,23 @@ "deprecationReason": null }, { - "name": "sampleOrigin_IN", + "name": "strand_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin_NOT", + "name": "strand_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55439,11 +82039,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_NOT_CONTAINS", + "name": "strand_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55451,11 +82051,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_NOT_ENDS_WITH", + "name": "strand_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55463,27 +82063,23 @@ "deprecationReason": null }, { - "name": "sampleOrigin_NOT_IN", + "name": "strand_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin_NOT_STARTS_WITH", + "name": "strand_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55491,11 +82087,11 @@ "deprecationReason": null }, { - "name": "sampleOrigin_STARTS_WITH", + "name": "strand_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55503,11 +82099,11 @@ "deprecationReason": null }, { - "name": "sampleType", + "name": "strand_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55515,11 +82111,11 @@ "deprecationReason": null }, { - "name": "sampleType_CONTAINS", + "name": "strand_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55527,75 +82123,116 @@ "deprecationReason": null }, { - "name": "sampleType_ENDS_WITH", + "name": "strand_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleRequestsHasSampleRelationship", + "description": null, + "fields": [ { - "name": "sampleType_IN", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_NOT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Request", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleType_NOT_CONTAINS", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RequestUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleType_NOT_ENDS_WITH", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_NOT_IN", + "name": "create", "description": null, "type": { "kind": "LIST", @@ -55604,8 +82241,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleCreateFieldInput", "ofType": null } } @@ -55615,35 +82252,51 @@ "deprecationReason": null }, { - "name": "sampleType_NOT_STARTS_WITH", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_STARTS_WITH", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadataAggregate", + "name": "update", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataAggregateInput", + "name": "SampleRequestsHasSampleUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -55651,107 +82304,156 @@ "deprecationReason": null }, { - "name": "samplesHasMetadataConnection_ALL", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "name": "SampleRequestsHasSampleConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleSampleAliasSampleAliasesIsAliasAggregationSelection", + "description": null, + "fields": [ { - "name": "samplesHasMetadataConnection_NONE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadataConnection_SINGLE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", + "kind": "OBJECT", + "name": "SampleSampleAliasSampleAliasesIsAliasNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleSampleAliasSampleAliasesIsAliasNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "samplesHasMetadataConnection_SOME", + "name": "namespace", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSamplesHasMetadataConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "samplesHasMetadata_ALL", - "description": "Return SampleMetadata where all of the related Samples match this filter", - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata_NONE", - "description": "Return SampleMetadata where none of the related Samples match this filter", + "name": "value", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "samplesHasMetadata_SINGLE", - "description": "Return SampleMetadata where one of the related Samples match this filter", + "name": "AND", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "samplesHasMetadata_SOME", - "description": "Return SampleMetadata where some of the related Samples match this filter", + "name": "OR", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex", + "name": "count", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55759,11 +82461,11 @@ "deprecationReason": null }, { - "name": "sex_CONTAINS", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55771,11 +82473,11 @@ "deprecationReason": null }, { - "name": "sex_ENDS_WITH", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55783,31 +82485,11 @@ "deprecationReason": null }, { - "name": "sex_IN", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sex_NOT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55815,11 +82497,11 @@ "deprecationReason": null }, { - "name": "sex_NOT_CONTAINS", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -55827,19 +82509,30 @@ "deprecationReason": null }, { - "name": "sex_NOT_ENDS_WITH", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sex_NOT_IN", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -55848,8 +82541,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleAliasConnectInput", "ofType": null } } @@ -55859,67 +82552,140 @@ "deprecationReason": null }, { - "name": "sex_NOT_STARTS_WITH", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleAliasConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SampleSampleAliasesIsAliasConnection", + "description": null, + "fields": [ { - "name": "sex_STARTS_WITH", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleSampleAliasesIsAliasRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_CONTAINS", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_ENDS_WITH", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_IN", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -55928,8 +82694,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null } } @@ -55939,11 +82705,11 @@ "deprecationReason": null }, { - "name": "species_NOT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", "ofType": null }, "defaultValue": null, @@ -55951,67 +82717,96 @@ "deprecationReason": null }, { - "name": "species_NOT_CONTAINS", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_NOT_ENDS_WITH", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleAliasCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_NOT_IN", + "name": "delete", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleAliasDeleteInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_NOT_STARTS_WITH", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_STARTS_WITH", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleAliasDisconnectInput", "ofType": null }, "defaultValue": null, @@ -56019,51 +82814,93 @@ "deprecationReason": null }, { - "name": "tissueLocation", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "tissueLocation_CONTAINS", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_ENDS_WITH", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "tissueLocation_IN", + "name": "AND", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", + "ofType": null + } } }, "defaultValue": null, @@ -56071,23 +82908,31 @@ "deprecationReason": null }, { - "name": "tissueLocation_NOT", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_NOT_CONTAINS", + "name": "namespace_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -56095,11 +82940,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_NOT_ENDS_WITH", + "name": "namespace_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -56107,27 +82952,23 @@ "deprecationReason": null }, { - "name": "tissueLocation_NOT_IN", + "name": "namespace_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_NOT_STARTS_WITH", + "name": "namespace_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -56135,11 +82976,11 @@ "deprecationReason": null }, { - "name": "tissueLocation_STARTS_WITH", + "name": "namespace_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -56147,7 +82988,7 @@ "deprecationReason": null }, { - "name": "tubeId", + "name": "namespace_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -56159,11 +83000,11 @@ "deprecationReason": null }, { - "name": "tubeId_CONTAINS", + "name": "namespace_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56171,11 +83012,11 @@ "deprecationReason": null }, { - "name": "tubeId_ENDS_WITH", + "name": "namespace_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56183,27 +83024,23 @@ "deprecationReason": null }, { - "name": "tubeId_IN", + "name": "namespace_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId_NOT", + "name": "namespace_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56211,11 +83048,11 @@ "deprecationReason": null }, { - "name": "tubeId_NOT_CONTAINS", + "name": "namespace_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56223,11 +83060,11 @@ "deprecationReason": null }, { - "name": "tubeId_NOT_ENDS_WITH", + "name": "namespace_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56235,27 +83072,23 @@ "deprecationReason": null }, { - "name": "tubeId_NOT_IN", + "name": "namespace_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId_NOT_STARTS_WITH", + "name": "namespace_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56263,11 +83096,11 @@ "deprecationReason": null }, { - "name": "tubeId_STARTS_WITH", + "name": "namespace_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56275,11 +83108,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "namespace_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56287,11 +83120,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_CONTAINS", + "name": "namespace_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56299,11 +83132,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_ENDS_WITH", + "name": "namespace_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56311,31 +83144,23 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_IN", + "name": "namespace_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal_NOT", + "name": "namespace_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56343,11 +83168,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_NOT_CONTAINS", + "name": "value_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -56355,11 +83180,11 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_NOT_ENDS_WITH", + "name": "value_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -56367,31 +83192,23 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_NOT_IN", + "name": "value_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal_NOT_STARTS_WITH", + "name": "value_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -56399,34 +83216,23 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_STARTS_WITH", + "name": "value_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleOptions", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "limit", + "name": "value_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -56434,7 +83240,7 @@ "deprecationReason": null }, { - "name": "offset", + "name": "value_GT", "description": null, "type": { "kind": "SCALAR", @@ -56446,144 +83252,67 @@ "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more SampleSort objects to sort Samples by. The sorts will be applied in the order in which they are arranged in the array.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SamplePatientPatientsHasSampleAggregationSelection", - "description": null, - "fields": [ - { - "name": "count", + "name": "value_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "value_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SamplePatientPatientsHasSampleNodeAggregateSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SamplePatientPatientsHasSampleNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "smilePatientId", + "name": "value_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "value_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "value_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "value_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -56595,7 +83324,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "value_LT", "description": null, "type": { "kind": "SCALAR", @@ -56607,7 +83336,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "value_LTE", "description": null, "type": { "kind": "SCALAR", @@ -56619,7 +83348,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "value_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -56631,7 +83360,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "value_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -56643,54 +83372,35 @@ "deprecationReason": null }, { - "name": "node", + "name": "value_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "value_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "value_SHORTEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientConnectWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -56704,43 +83414,19 @@ }, { "kind": "OBJECT", - "name": "SamplePatientsHasSampleConnection", + "name": "SampleSampleAliasesIsAliasRelationship", "description": null, "fields": [ { - "name": "edges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SamplePatientsHasSampleRelationship", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", + "name": "cursor", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -56748,15 +83434,15 @@ "deprecationReason": null }, { - "name": "totalCount", + "name": "node", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "SampleAlias", "ofType": null } }, @@ -56771,7 +83457,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionSort", + "name": "SampleSampleAliasesIsAliasUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ @@ -56780,7 +83466,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PatientSort", + "name": "SampleAliasUpdateInput", "ofType": null }, "defaultValue": null, @@ -56794,12 +83480,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "name": "SampleSampleAliasesIsAliasUpdateFieldInput", "description": null, "fields": null, "inputFields": [ { - "name": "AND", + "name": "connect", "description": null, "type": { "kind": "LIST", @@ -56809,7 +83495,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "name": "SampleSampleAliasesIsAliasConnectFieldInput", "ofType": null } } @@ -56819,7 +83505,7 @@ "deprecationReason": null }, { - "name": "OR", + "name": "create", "description": null, "type": { "kind": "LIST", @@ -56829,7 +83515,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "name": "SampleSampleAliasesIsAliasCreateFieldInput", "ofType": null } } @@ -56839,11 +83525,51 @@ "deprecationReason": null }, { - "name": "node", + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasDeleteFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnect", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "name": "SampleSampleAliasesIsAliasUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -56851,11 +83577,11 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null }, "defaultValue": null, @@ -56868,385 +83594,483 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleCreateFieldInput", + "kind": "OBJECT", + "name": "SampleSampleMetadataHasMetadataSampleMetadataAggregationSelection", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "node", + "name": "count", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "PatientCreateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SampleSampleMetadataHasMetadataSampleMetadataNodeAggregateSelection", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleDeleteFieldInput", + "kind": "OBJECT", + "name": "SampleSampleMetadataHasMetadataSampleMetadataNodeAggregateSelection", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "delete", + "name": "additionalProperties", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientDeleteInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "baitSet", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "cfDNA2dBarcode", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PatientDisconnectInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "cmoInfoIgoId", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "cmoPatientId", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "cmoSampleIdFields", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleCreateFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "cmoSampleName", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleNodeAggregationWhereInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "collectionYear", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleNodeAggregationWhereInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_EQUAL", + "name": "genePanel", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_GT", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_GTE", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_LT", + "name": "investigatorSampleId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_AVERAGE_LTE", + "name": "libraries", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_EQUAL", + "name": "oncotreeCode", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_GT", + "name": "preservation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_GTE", + "name": "primaryId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_EQUAL", + "name": "qcReports", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_GT", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleOrigin", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_GTE", + "name": "sex", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_LT", + "name": "species", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_LONGEST_LTE", + "name": "tissueLocation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_LT", + "name": "tubeId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smilePatientId_LTE", + "name": "tumorOrNormal", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SampleSort", + "description": "Fields to sort Samples by. The order in which sorts are applied is not guaranteed when specifying many fields in one SampleSort object.", + "fields": null, + "inputFields": [ { - "name": "smilePatientId_SHORTEST_EQUAL", + "name": "datasource", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -57254,11 +84078,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_GT", + "name": "revisable", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -57266,11 +84090,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_GTE", + "name": "sampleCategory", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -57278,11 +84102,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_LT", + "name": "sampleClass", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -57290,11 +84114,11 @@ "deprecationReason": null }, { - "name": "smilePatientId_SHORTEST_LTE", + "name": "smileSampleId", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -57308,11 +84132,11 @@ }, { "kind": "OBJECT", - "name": "SamplePatientsHasSampleRelationship", + "name": "SampleTempoHasTempoTemposAggregationSelection", "description": null, "fields": [ { - "name": "cursor", + "name": "count", "description": null, "args": [], "type": { @@ -57320,23 +84144,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Patient", + "name": "Int", "ofType": null } }, @@ -57351,35 +84159,44 @@ }, { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleUpdateConnectionInput", + "name": "SampleUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "node", + "name": "cohortsHasCohortSample", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientUpdateInput", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "hasMetadataSampleMetadata", "description": null, "type": { "kind": "LIST", @@ -57389,7 +84206,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectFieldInput", + "name": "SampleHasMetadataSampleMetadataUpdateFieldInput", "ofType": null } } @@ -57399,7 +84216,7 @@ "deprecationReason": null }, { - "name": "create", + "name": "hasTempoTempos", "description": null, "type": { "kind": "LIST", @@ -57409,7 +84226,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleCreateFieldInput", + "name": "SampleHasTempoTemposUpdateFieldInput", "ofType": null } } @@ -57419,7 +84236,7 @@ "deprecationReason": null }, { - "name": "delete", + "name": "patientsHasSample", "description": null, "type": { "kind": "LIST", @@ -57429,7 +84246,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleDeleteFieldInput", + "name": "SamplePatientsHasSampleUpdateFieldInput", "ofType": null } } @@ -57439,7 +84256,7 @@ "deprecationReason": null }, { - "name": "disconnect", + "name": "requestsHasSample", "description": null, "type": { "kind": "LIST", @@ -57449,7 +84266,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleDisconnectFieldInput", + "name": "SampleRequestsHasSampleUpdateFieldInput", "ofType": null } } @@ -57459,11 +84276,11 @@ "deprecationReason": null }, { - "name": "update", + "name": "revisable", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleUpdateConnectionInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -57471,11 +84288,55 @@ "deprecationReason": null }, { - "name": "where", + "name": "sampleAliasesIsAlias", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleCategory", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleClass", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileSampleId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -57489,12 +84350,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "SampleRelationInput", + "name": "SampleWhere", "description": null, "fields": null, "inputFields": [ { - "name": "hasMetadataSampleMetadata", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -57504,7 +84365,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataCreateFieldInput", + "name": "SampleWhere", "ofType": null } } @@ -57514,7 +84375,7 @@ "deprecationReason": null }, { - "name": "patientsHasSample", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -57524,7 +84385,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleCreateFieldInput", + "name": "SampleWhere", "ofType": null } } @@ -57534,456 +84395,375 @@ "deprecationReason": null }, { - "name": "requestsHasSample", + "name": "cohortsHasCohortSampleAggregate", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleCreateFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleAggregateInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleAliasesIsAlias", + "name": "cohortsHasCohortSampleConnection_ALL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasCreateFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleRequestRequestsHasSampleAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "cohortsHasCohortSampleConnection_NONE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "cohortsHasCohortSampleConnection_SINGLE", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SampleRequestRequestsHasSampleNodeAggregateSelection", + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleRequestRequestsHasSampleNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "dataAccessEmails", + "name": "cohortsHasCohortSampleConnection_SOME", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleCohortsHasCohortSampleConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail", + "name": "cohortsHasCohortSample_ALL", + "description": "Return Samples where all of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortSample_NONE", + "description": "Return Samples where none of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortSample_SINGLE", + "description": "Return Samples where one of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cohortsHasCohortSample_SOME", + "description": "Return Samples where some of the related Cohorts match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "CohortWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datasource", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName", + "name": "datasource_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "datasource_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId", + "name": "datasource_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "datasource_NOT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorEmail", + "name": "datasource_NOT_CONTAINS", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorName", + "name": "datasource_NOT_ENDS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadEmail", + "name": "datasource_NOT_IN", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName", + "name": "datasource_NOT_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType", + "name": "datasource_STARTS_WITH", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace", + "name": "hasMetadataSampleMetadataAggregate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataAggregateInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "otherContactEmails", + "name": "hasMetadataSampleMetadataConnection_ALL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "piEmail", + "name": "hasMetadataSampleMetadataConnection_NONE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectManagerName", + "name": "hasMetadataSampleMetadataConnection_SINGLE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcAccessEmails", + "name": "hasMetadataSampleMetadataConnection_SOME", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestJson", - "description": null, - "args": [], + "name": "hasMetadataSampleMetadata_ALL", + "description": "Return Samples where all of the related SampleMetadata match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileRequestId", - "description": null, - "args": [], + "name": "hasMetadataSampleMetadata_NONE", + "description": "Return Samples where none of the related SampleMetadata match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "strand", - "description": null, - "args": [], + "name": "hasMetadataSampleMetadata_SINGLE", + "description": "Return Samples where one of the related SampleMetadata match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", - "description": null, + "name": "hasMetadataSampleMetadata_SOME", + "description": "Return Samples where some of the related SampleMetadata match this filter", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleAggregateInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "hasTempoTemposAggregate", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleAggregateInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposAggregateInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "hasTempoTemposConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null }, "defaultValue": null, @@ -57991,11 +84771,11 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "hasTempoTemposConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58003,11 +84783,11 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "hasTempoTemposConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58015,11 +84795,11 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "hasTempoTemposConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleHasTempoTemposConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58027,11 +84807,11 @@ "deprecationReason": null }, { - "name": "count_LTE", - "description": null, + "name": "hasTempoTempos_ALL", + "description": "Return Samples where all of the related Tempos match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, @@ -58039,207 +84819,119 @@ "deprecationReason": null }, { - "name": "node", - "description": null, + "name": "hasTempoTempos_NONE", + "description": "Return Samples where none of the related Tempos match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleNodeAggregationWhereInput", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", - "description": null, + "name": "hasTempoTempos_SINGLE", + "description": "Return Samples where one of the related Tempos match this filter", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestConnectInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", - "description": null, + "name": "hasTempoTempos_SOME", + "description": "Return Samples where some of the related Tempos match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestConnectWhere", + "name": "TempoWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleRequestsHasSampleConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "patientsHasSampleAggregate", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleRequestsHasSampleRelationship", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleAggregateInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "patientsHasSampleConnection_ALL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "patientsHasSampleConnection_NONE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleConnectionWhere", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "patientsHasSampleConnection_SINGLE", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestSort", + "name": "SamplePatientsHasSampleConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "patientsHasSampleConnection_SOME", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SamplePatientsHasSampleConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", - "description": null, + "name": "patientsHasSample_ALL", + "description": "Return Samples where all of the related Patients match this filter", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", - "description": null, + "name": "patientsHasSample_NONE", + "description": "Return Samples where none of the related Patients match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "name": "PatientWhere", "ofType": null }, "defaultValue": null, @@ -58247,61 +84939,35 @@ "deprecationReason": null }, { - "name": "node_NOT", - "description": null, + "name": "patientsHasSample_SINGLE", + "description": "Return Samples where one of the related Patients match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "name": "PatientWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", - "description": null, + "name": "patientsHasSample_SOME", + "description": "Return Samples where some of the related Patients match this filter", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestCreateInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PatientWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "requestsHasSampleAggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestDeleteInput", + "name": "SampleRequestsHasSampleAggregateInput", "ofType": null }, "defaultValue": null, @@ -58309,7 +84975,7 @@ "deprecationReason": null }, { - "name": "where", + "name": "requestsHasSampleConnection_ALL", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -58319,24 +84985,13 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "requestsHasSampleConnection_NONE", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestDisconnectInput", + "name": "SampleRequestsHasSampleConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58344,7 +84999,7 @@ "deprecationReason": null }, { - "name": "where", + "name": "requestsHasSampleConnection_SINGLE", "description": null, "type": { "kind": "INPUT_OBJECT", @@ -58354,115 +85009,61 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "requestsHasSampleConnection_SOME", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleRequestsHasSampleConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", - "description": null, + "name": "requestsHasSample_ALL", + "description": "Return Samples where all of the related Requests match this filter", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleCreateFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", - "description": null, + "name": "requestsHasSample_NONE", + "description": "Return Samples where none of the related Requests match this filter", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", - "description": null, + "name": "requestsHasSample_SINGLE", + "description": "Return Samples where one of the related Requests match this filter", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_EQUAL", - "description": null, + "name": "requestsHasSample_SOME", + "description": "Return Samples where some of the related Requests match this filter", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestWhere", "ofType": null }, "defaultValue": null, @@ -58470,11 +85071,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_GT", + "name": "revisable", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -58482,11 +85083,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_GTE", + "name": "revisable_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -58494,11 +85095,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_LT", + "name": "sampleAliasesIsAliasAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasAggregateInput", "ofType": null }, "defaultValue": null, @@ -58506,11 +85107,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_AVERAGE_LTE", + "name": "sampleAliasesIsAliasConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58518,11 +85119,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_EQUAL", + "name": "sampleAliasesIsAliasConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58530,11 +85131,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_GT", + "name": "sampleAliasesIsAliasConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58542,11 +85143,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_GTE", + "name": "sampleAliasesIsAliasConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleSampleAliasesIsAliasConnectionWhere", "ofType": null }, "defaultValue": null, @@ -58554,11 +85155,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_EQUAL", - "description": null, + "name": "sampleAliasesIsAlias_ALL", + "description": "Return Samples where all of the related SampleAliases match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", "ofType": null }, "defaultValue": null, @@ -58566,11 +85167,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_GT", - "description": null, + "name": "sampleAliasesIsAlias_NONE", + "description": "Return Samples where none of the related SampleAliases match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", "ofType": null }, "defaultValue": null, @@ -58578,11 +85179,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_GTE", - "description": null, + "name": "sampleAliasesIsAlias_SINGLE", + "description": "Return Samples where one of the related SampleAliases match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", "ofType": null }, "defaultValue": null, @@ -58590,11 +85191,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_LT", - "description": null, + "name": "sampleAliasesIsAlias_SOME", + "description": "Return Samples where some of the related SampleAliases match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleAliasWhere", "ofType": null }, "defaultValue": null, @@ -58602,11 +85203,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LONGEST_LTE", + "name": "sampleCategory", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58614,11 +85215,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LT", + "name": "sampleCategory_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58626,11 +85227,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_LTE", + "name": "sampleCategory_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58638,23 +85239,31 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_EQUAL", + "name": "sampleCategory_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_GT", + "name": "sampleCategory_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58662,11 +85271,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_GTE", + "name": "sampleCategory_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58674,11 +85283,11 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_LT", + "name": "sampleCategory_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58686,23 +85295,31 @@ "deprecationReason": null }, { - "name": "dataAccessEmails_SHORTEST_LTE", + "name": "sampleCategory_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_EQUAL", + "name": "sampleCategory_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58710,11 +85327,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_GT", + "name": "sampleCategory_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58722,11 +85339,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_GTE", + "name": "sampleClass", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58734,11 +85351,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_LT", + "name": "sampleClass_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58746,11 +85363,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_AVERAGE_LTE", + "name": "sampleClass_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58758,23 +85375,31 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_EQUAL", + "name": "sampleClass_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_GT", + "name": "sampleClass_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58782,11 +85407,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_GTE", + "name": "sampleClass_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58794,11 +85419,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_EQUAL", + "name": "sampleClass_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58806,23 +85431,31 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_GT", + "name": "sampleClass_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_GTE", + "name": "sampleClass_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58830,11 +85463,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_LT", + "name": "sampleClass_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58842,11 +85475,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LONGEST_LTE", + "name": "smileSampleId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58854,11 +85487,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LT", + "name": "smileSampleId_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58866,11 +85499,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_LTE", + "name": "smileSampleId_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58878,23 +85511,31 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_EQUAL", + "name": "smileSampleId_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_GT", + "name": "smileSampleId_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58902,11 +85543,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_GTE", + "name": "smileSampleId_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58914,11 +85555,11 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_LT", + "name": "smileSampleId_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58926,23 +85567,31 @@ "deprecationReason": null }, { - "name": "dataAnalystEmail_SHORTEST_LTE", + "name": "smileSampleId_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_EQUAL", + "name": "smileSampleId_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -58950,215 +85599,654 @@ "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_GT", + "name": "smileSampleId_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SamplesConnection", + "description": null, + "fields": [ { - "name": "dataAnalystName_AVERAGE_GTE", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleEdge", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_LT", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_AVERAGE_LTE", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SortDirection", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ASC", + "description": "Sort by field values in ascending order.", "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_EQUAL", + "name": "DESC", + "description": "Sort by field values in descending order.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Status", + "description": null, + "fields": [ + { + "name": "requestMetadataHasStatus", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadata", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_GT", + "name": "requestMetadataHasStatusAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "StatusRequestMetadataRequestMetadataHasStatusAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_GTE", + "name": "requestMetadataHasStatusConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StatusRequestMetadataHasStatusConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_EQUAL", + "name": "sampleMetadataHasStatus", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadata", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_GT", + "name": "sampleMetadataHasStatusAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_GTE", + "name": "sampleMetadataHasStatusConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StatusSampleMetadataHasStatusConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_LT", + "name": "validationReport", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LONGEST_LTE", + "name": "validationStatus", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusAggregateSelection", + "description": null, + "fields": [ { - "name": "dataAnalystName_LT", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_LTE", + "name": "validationReport", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusConnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_SHORTEST_EQUAL", + "name": "requestMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_GT", + "name": "sampleMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_SHORTEST_GTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "dataAnalystName_SHORTEST_LT", + "name": "requestMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusFieldInput", "ofType": null }, "defaultValue": null, @@ -59166,11 +86254,11 @@ "deprecationReason": null }, { - "name": "dataAnalystName_SHORTEST_LTE", + "name": "sampleMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusFieldInput", "ofType": null }, "defaultValue": null, @@ -59178,103 +86266,195 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_EQUAL", + "name": "validationReport", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GT", + "name": "validationStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_AVERAGE_GTE", + "name": "requestMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LT", + "name": "sampleMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_AVERAGE_LTE", + "name": "requestMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_EQUAL", + "name": "sampleMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusEdge", + "description": null, + "fields": [ { - "name": "genePanel_GT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_GTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Status", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusOptions", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_LONGEST_EQUAL", + "name": "limit", "description": null, "type": { "kind": "SCALAR", @@ -59286,7 +86466,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_GT", + "name": "offset", "description": null, "type": { "kind": "SCALAR", @@ -59298,67 +86478,129 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_GTE", - "description": null, + "name": "sort", + "description": "Specify one or more StatusSort objects to sort Statuses by. The sorts will be applied in the order in which they are arranged in the array.", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSort", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRelationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_LONGEST_LT", + "name": "requestMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LONGEST_LTE", + "name": "sampleMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "genePanel_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -59370,7 +86612,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -59382,7 +86624,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -59394,7 +86636,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -59406,7 +86648,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -59418,119 +86660,207 @@ "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusRequestMetadataHasStatusConnection", + "description": null, + "fields": [ { - "name": "igoProjectId_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StatusRequestMetadataHasStatusRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -59538,35 +86868,61 @@ "deprecationReason": null }, { - "name": "igoProjectId_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDeleteInput", "ofType": null }, "defaultValue": null, @@ -59574,23 +86930,34 @@ "deprecationReason": null }, { - "name": "igoProjectId_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataDisconnectInput", "ofType": null }, "defaultValue": null, @@ -59598,60 +86965,114 @@ "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoProjectId_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoProjectId_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -59898,7 +87319,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_EQUAL", + "name": "importDate_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -59910,7 +87331,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_GT", + "name": "importDate_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -59922,7 +87343,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_GTE", + "name": "importDate_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -59934,7 +87355,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_LT", + "name": "importDate_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -59946,7 +87367,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_AVERAGE_LTE", + "name": "importDate_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -59958,7 +87379,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_EQUAL", + "name": "importDate_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -59970,7 +87391,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_GT", + "name": "importDate_GT", "description": null, "type": { "kind": "SCALAR", @@ -59982,7 +87403,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_GTE", + "name": "importDate_GTE", "description": null, "type": { "kind": "SCALAR", @@ -59994,7 +87415,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_EQUAL", + "name": "importDate_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -60006,7 +87427,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_GT", + "name": "importDate_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -60018,7 +87439,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_GTE", + "name": "importDate_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -60030,7 +87451,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_LT", + "name": "importDate_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -60042,7 +87463,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LONGEST_LTE", + "name": "importDate_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60054,7 +87475,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LT", + "name": "importDate_LT", "description": null, "type": { "kind": "SCALAR", @@ -60066,7 +87487,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_LTE", + "name": "importDate_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60078,7 +87499,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_EQUAL", + "name": "importDate_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -60090,7 +87511,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_GT", + "name": "importDate_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -60102,7 +87523,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_GTE", + "name": "importDate_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -60114,7 +87535,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_LT", + "name": "importDate_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -60126,7 +87547,7 @@ "deprecationReason": null }, { - "name": "investigatorEmail_SHORTEST_LTE", + "name": "importDate_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60138,7 +87559,7 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_EQUAL", + "name": "requestMetadataJson_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -60150,7 +87571,7 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_GT", + "name": "requestMetadataJson_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -60162,7 +87583,7 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_GTE", + "name": "requestMetadataJson_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -60174,7 +87595,7 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_LT", + "name": "requestMetadataJson_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -60186,7 +87607,7 @@ "deprecationReason": null }, { - "name": "investigatorName_AVERAGE_LTE", + "name": "requestMetadataJson_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60198,7 +87619,7 @@ "deprecationReason": null }, { - "name": "investigatorName_EQUAL", + "name": "requestMetadataJson_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -60210,163 +87631,7 @@ "deprecationReason": null }, { - "name": "investigatorName_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_LONGEST_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_LONGEST_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_LONGEST_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_LONGEST_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_LONGEST_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_SHORTEST_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_SHORTEST_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_SHORTEST_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_SHORTEST_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigatorName_SHORTEST_LTE", + "name": "requestMetadataJson_GT", "description": null, "type": { "kind": "SCALAR", @@ -60378,79 +87643,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labHeadEmail_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labHeadEmail_AVERAGE_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labHeadEmail_AVERAGE_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labHeadEmail_AVERAGE_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labHeadEmail_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labHeadEmail_GT", + "name": "requestMetadataJson_GTE", "description": null, "type": { "kind": "SCALAR", @@ -60462,7 +87655,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_GTE", + "name": "requestMetadataJson_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -60474,7 +87667,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_EQUAL", + "name": "requestMetadataJson_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -60486,7 +87679,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_GT", + "name": "requestMetadataJson_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -60498,7 +87691,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_GTE", + "name": "requestMetadataJson_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -60510,7 +87703,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_LT", + "name": "requestMetadataJson_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60522,7 +87715,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LONGEST_LTE", + "name": "requestMetadataJson_LT", "description": null, "type": { "kind": "SCALAR", @@ -60534,7 +87727,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LT", + "name": "requestMetadataJson_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60546,7 +87739,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_LTE", + "name": "requestMetadataJson_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -60558,7 +87751,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_EQUAL", + "name": "requestMetadataJson_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -60570,7 +87763,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_GT", + "name": "requestMetadataJson_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -60582,7 +87775,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_GTE", + "name": "requestMetadataJson_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -60594,7 +87787,7 @@ "deprecationReason": null }, { - "name": "labHeadEmail_SHORTEST_LT", + "name": "requestMetadataJson_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60604,97 +87797,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusRequestMetadataHasStatusRelationship", + "description": null, + "fields": [ { - "name": "labHeadEmail_SHORTEST_LTE", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadata", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "labHeadName_AVERAGE_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "labHeadName_AVERAGE_GTE", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_LT", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_AVERAGE_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_EQUAL", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_GT", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -60702,103 +87968,168 @@ "deprecationReason": null }, { - "name": "labHeadName_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusRequestMetadataRequestMetadataHasStatusAggregationSelection", + "description": null, + "fields": [ { - "name": "labHeadName_LONGEST_EQUAL", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_LONGEST_GT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "StatusRequestMetadataRequestMetadataHasStatusNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusRequestMetadataRequestMetadataHasStatusNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "labHeadName_LONGEST_GTE", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_LONGEST_LT", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_LONGEST_LTE", + "name": "requestMetadataJson", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "labHeadName_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -60810,7 +88141,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -60822,7 +88153,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -60834,7 +88165,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -60846,7 +88177,7 @@ "deprecationReason": null }, { - "name": "labHeadName_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -60858,119 +88189,207 @@ "deprecationReason": null }, { - "name": "libraryType_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusSampleMetadataHasStatusConnection", + "description": null, + "fields": [ { - "name": "libraryType_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StatusSampleMetadataHasStatusRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", "ofType": null }, "defaultValue": null, @@ -60978,35 +88397,61 @@ "deprecationReason": null }, { - "name": "libraryType_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleMetadataCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDeleteInput", "ofType": null }, "defaultValue": null, @@ -61014,23 +88459,34 @@ "deprecationReason": null }, { - "name": "libraryType_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataDisconnectInput", "ofType": null }, "defaultValue": null, @@ -61038,67 +88494,121 @@ "deprecationReason": null }, { - "name": "libraryType_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_SHORTEST_GT", + "name": "connect", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "libraryType_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraryType_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_EQUAL", + "name": "additionalProperties_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61110,7 +88620,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GT", + "name": "additionalProperties_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -61122,7 +88632,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GTE", + "name": "additionalProperties_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61134,7 +88644,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LT", + "name": "additionalProperties_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -61146,7 +88656,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LTE", + "name": "additionalProperties_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61158,7 +88668,7 @@ "deprecationReason": null }, { - "name": "namespace_EQUAL", + "name": "additionalProperties_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61170,7 +88680,7 @@ "deprecationReason": null }, { - "name": "namespace_GT", + "name": "additionalProperties_GT", "description": null, "type": { "kind": "SCALAR", @@ -61182,7 +88692,7 @@ "deprecationReason": null }, { - "name": "namespace_GTE", + "name": "additionalProperties_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61194,7 +88704,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_EQUAL", + "name": "additionalProperties_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61206,7 +88716,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_GT", + "name": "additionalProperties_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -61218,7 +88728,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_GTE", + "name": "additionalProperties_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61230,7 +88740,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_LT", + "name": "additionalProperties_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -61242,7 +88752,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_LTE", + "name": "additionalProperties_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61254,7 +88764,7 @@ "deprecationReason": null }, { - "name": "namespace_LT", + "name": "additionalProperties_LT", "description": null, "type": { "kind": "SCALAR", @@ -61266,7 +88776,7 @@ "deprecationReason": null }, { - "name": "namespace_LTE", + "name": "additionalProperties_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61278,7 +88788,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_EQUAL", + "name": "additionalProperties_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61290,7 +88800,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GT", + "name": "additionalProperties_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -61302,7 +88812,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GTE", + "name": "additionalProperties_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61314,7 +88824,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_LT", + "name": "additionalProperties_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -61326,7 +88836,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_LTE", + "name": "additionalProperties_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61338,7 +88848,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_EQUAL", + "name": "baitSet_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61350,7 +88860,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_GT", + "name": "baitSet_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -61362,7 +88872,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_GTE", + "name": "baitSet_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61374,7 +88884,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_LT", + "name": "baitSet_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -61386,7 +88896,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_AVERAGE_LTE", + "name": "baitSet_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61398,7 +88908,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_EQUAL", + "name": "baitSet_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61410,7 +88920,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_GT", + "name": "baitSet_GT", "description": null, "type": { "kind": "SCALAR", @@ -61422,7 +88932,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_GTE", + "name": "baitSet_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61434,7 +88944,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_EQUAL", + "name": "baitSet_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61446,7 +88956,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_GT", + "name": "baitSet_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -61458,7 +88968,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_GTE", + "name": "baitSet_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61470,7 +88980,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_LT", + "name": "baitSet_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -61482,7 +88992,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LONGEST_LTE", + "name": "baitSet_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61494,7 +89004,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LT", + "name": "baitSet_LT", "description": null, "type": { "kind": "SCALAR", @@ -61506,7 +89016,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_LTE", + "name": "baitSet_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61518,7 +89028,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_EQUAL", + "name": "baitSet_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61530,7 +89040,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_GT", + "name": "baitSet_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -61542,7 +89052,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_GTE", + "name": "baitSet_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61554,7 +89064,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_LT", + "name": "baitSet_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -61566,7 +89076,7 @@ "deprecationReason": null }, { - "name": "otherContactEmails_SHORTEST_LTE", + "name": "baitSet_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61578,7 +89088,7 @@ "deprecationReason": null }, { - "name": "piEmail_AVERAGE_EQUAL", + "name": "cfDNA2dBarcode_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61590,7 +89100,7 @@ "deprecationReason": null }, { - "name": "piEmail_AVERAGE_GT", + "name": "cfDNA2dBarcode_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -61602,7 +89112,7 @@ "deprecationReason": null }, { - "name": "piEmail_AVERAGE_GTE", + "name": "cfDNA2dBarcode_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61614,7 +89124,7 @@ "deprecationReason": null }, { - "name": "piEmail_AVERAGE_LT", + "name": "cfDNA2dBarcode_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -61626,7 +89136,7 @@ "deprecationReason": null }, { - "name": "piEmail_AVERAGE_LTE", + "name": "cfDNA2dBarcode_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61638,7 +89148,7 @@ "deprecationReason": null }, { - "name": "piEmail_EQUAL", + "name": "cfDNA2dBarcode_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61650,7 +89160,7 @@ "deprecationReason": null }, { - "name": "piEmail_GT", + "name": "cfDNA2dBarcode_GT", "description": null, "type": { "kind": "SCALAR", @@ -61662,7 +89172,7 @@ "deprecationReason": null }, { - "name": "piEmail_GTE", + "name": "cfDNA2dBarcode_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61674,7 +89184,7 @@ "deprecationReason": null }, { - "name": "piEmail_LONGEST_EQUAL", + "name": "cfDNA2dBarcode_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61686,7 +89196,7 @@ "deprecationReason": null }, { - "name": "piEmail_LONGEST_GT", + "name": "cfDNA2dBarcode_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -61698,7 +89208,7 @@ "deprecationReason": null }, { - "name": "piEmail_LONGEST_GTE", + "name": "cfDNA2dBarcode_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61710,7 +89220,7 @@ "deprecationReason": null }, { - "name": "piEmail_LONGEST_LT", + "name": "cfDNA2dBarcode_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -61722,7 +89232,7 @@ "deprecationReason": null }, { - "name": "piEmail_LONGEST_LTE", + "name": "cfDNA2dBarcode_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61734,7 +89244,7 @@ "deprecationReason": null }, { - "name": "piEmail_LT", + "name": "cfDNA2dBarcode_LT", "description": null, "type": { "kind": "SCALAR", @@ -61746,7 +89256,7 @@ "deprecationReason": null }, { - "name": "piEmail_LTE", + "name": "cfDNA2dBarcode_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61758,7 +89268,7 @@ "deprecationReason": null }, { - "name": "piEmail_SHORTEST_EQUAL", + "name": "cfDNA2dBarcode_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61770,7 +89280,7 @@ "deprecationReason": null }, { - "name": "piEmail_SHORTEST_GT", + "name": "cfDNA2dBarcode_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -61782,7 +89292,7 @@ "deprecationReason": null }, { - "name": "piEmail_SHORTEST_GTE", + "name": "cfDNA2dBarcode_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61794,7 +89304,7 @@ "deprecationReason": null }, { - "name": "piEmail_SHORTEST_LT", + "name": "cfDNA2dBarcode_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -61806,7 +89316,7 @@ "deprecationReason": null }, { - "name": "piEmail_SHORTEST_LTE", + "name": "cfDNA2dBarcode_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61818,7 +89328,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_EQUAL", + "name": "cmoInfoIgoId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61830,7 +89340,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_GT", + "name": "cmoInfoIgoId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -61842,7 +89352,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_GTE", + "name": "cmoInfoIgoId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61854,7 +89364,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_LT", + "name": "cmoInfoIgoId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -61866,7 +89376,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_AVERAGE_LTE", + "name": "cmoInfoIgoId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61878,7 +89388,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_EQUAL", + "name": "cmoInfoIgoId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61890,7 +89400,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_GT", + "name": "cmoInfoIgoId_GT", "description": null, "type": { "kind": "SCALAR", @@ -61902,7 +89412,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_GTE", + "name": "cmoInfoIgoId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61914,7 +89424,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_EQUAL", + "name": "cmoInfoIgoId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -61926,7 +89436,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_GT", + "name": "cmoInfoIgoId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -61938,7 +89448,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_GTE", + "name": "cmoInfoIgoId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -61950,7 +89460,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_LT", + "name": "cmoInfoIgoId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -61962,7 +89472,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LONGEST_LTE", + "name": "cmoInfoIgoId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61974,7 +89484,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LT", + "name": "cmoInfoIgoId_LT", "description": null, "type": { "kind": "SCALAR", @@ -61986,7 +89496,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_LTE", + "name": "cmoInfoIgoId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -61998,7 +89508,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_EQUAL", + "name": "cmoInfoIgoId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62010,7 +89520,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_GT", + "name": "cmoInfoIgoId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62022,7 +89532,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_GTE", + "name": "cmoInfoIgoId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62034,7 +89544,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_LT", + "name": "cmoInfoIgoId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62046,7 +89556,7 @@ "deprecationReason": null }, { - "name": "projectManagerName_SHORTEST_LTE", + "name": "cmoInfoIgoId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62058,7 +89568,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_EQUAL", + "name": "cmoPatientId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62070,7 +89580,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_GT", + "name": "cmoPatientId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -62082,7 +89592,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_GTE", + "name": "cmoPatientId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62094,7 +89604,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_LT", + "name": "cmoPatientId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -62106,7 +89616,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_AVERAGE_LTE", + "name": "cmoPatientId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62118,7 +89628,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_EQUAL", + "name": "cmoPatientId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62130,7 +89640,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_GT", + "name": "cmoPatientId_GT", "description": null, "type": { "kind": "SCALAR", @@ -62142,7 +89652,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_GTE", + "name": "cmoPatientId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62154,7 +89664,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_EQUAL", + "name": "cmoPatientId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62166,7 +89676,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_GT", + "name": "cmoPatientId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62178,7 +89688,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_GTE", + "name": "cmoPatientId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62190,7 +89700,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_LT", + "name": "cmoPatientId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62202,7 +89712,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LONGEST_LTE", + "name": "cmoPatientId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62214,7 +89724,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LT", + "name": "cmoPatientId_LT", "description": null, "type": { "kind": "SCALAR", @@ -62226,7 +89736,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_LTE", + "name": "cmoPatientId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62238,7 +89748,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_EQUAL", + "name": "cmoPatientId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62250,7 +89760,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_GT", + "name": "cmoPatientId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62262,7 +89772,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_GTE", + "name": "cmoPatientId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62274,7 +89784,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_LT", + "name": "cmoPatientId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62286,7 +89796,7 @@ "deprecationReason": null }, { - "name": "qcAccessEmails_SHORTEST_LTE", + "name": "cmoPatientId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62298,7 +89808,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_EQUAL", + "name": "cmoSampleIdFields_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62310,7 +89820,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_GT", + "name": "cmoSampleIdFields_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -62322,7 +89832,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_GTE", + "name": "cmoSampleIdFields_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62334,7 +89844,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_LT", + "name": "cmoSampleIdFields_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -62346,7 +89856,7 @@ "deprecationReason": null }, { - "name": "requestJson_AVERAGE_LTE", + "name": "cmoSampleIdFields_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62358,7 +89868,7 @@ "deprecationReason": null }, { - "name": "requestJson_EQUAL", + "name": "cmoSampleIdFields_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62370,7 +89880,7 @@ "deprecationReason": null }, { - "name": "requestJson_GT", + "name": "cmoSampleIdFields_GT", "description": null, "type": { "kind": "SCALAR", @@ -62382,7 +89892,7 @@ "deprecationReason": null }, { - "name": "requestJson_GTE", + "name": "cmoSampleIdFields_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62394,7 +89904,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_EQUAL", + "name": "cmoSampleIdFields_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62406,7 +89916,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_GT", + "name": "cmoSampleIdFields_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62418,7 +89928,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_GTE", + "name": "cmoSampleIdFields_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62430,7 +89940,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_LT", + "name": "cmoSampleIdFields_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62442,7 +89952,7 @@ "deprecationReason": null }, { - "name": "requestJson_LONGEST_LTE", + "name": "cmoSampleIdFields_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62454,7 +89964,7 @@ "deprecationReason": null }, { - "name": "requestJson_LT", + "name": "cmoSampleIdFields_LT", "description": null, "type": { "kind": "SCALAR", @@ -62466,7 +89976,7 @@ "deprecationReason": null }, { - "name": "requestJson_LTE", + "name": "cmoSampleIdFields_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62478,7 +89988,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_EQUAL", + "name": "cmoSampleIdFields_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62490,7 +90000,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_GT", + "name": "cmoSampleIdFields_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62502,7 +90012,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_GTE", + "name": "cmoSampleIdFields_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62514,7 +90024,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_LT", + "name": "cmoSampleIdFields_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62526,7 +90036,7 @@ "deprecationReason": null }, { - "name": "requestJson_SHORTEST_LTE", + "name": "cmoSampleIdFields_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62538,7 +90048,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_EQUAL", + "name": "cmoSampleName_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62550,7 +90060,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_GT", + "name": "cmoSampleName_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -62562,7 +90072,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_GTE", + "name": "cmoSampleName_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62574,7 +90084,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_LT", + "name": "cmoSampleName_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -62586,7 +90096,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_AVERAGE_LTE", + "name": "cmoSampleName_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62598,7 +90108,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_EQUAL", + "name": "cmoSampleName_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62610,7 +90120,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_GT", + "name": "cmoSampleName_GT", "description": null, "type": { "kind": "SCALAR", @@ -62622,7 +90132,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_GTE", + "name": "cmoSampleName_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62634,7 +90144,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_EQUAL", + "name": "cmoSampleName_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62646,7 +90156,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_GT", + "name": "cmoSampleName_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62658,7 +90168,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_GTE", + "name": "cmoSampleName_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62670,7 +90180,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_LT", + "name": "cmoSampleName_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62682,7 +90192,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LONGEST_LTE", + "name": "cmoSampleName_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62694,7 +90204,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LT", + "name": "cmoSampleName_LT", "description": null, "type": { "kind": "SCALAR", @@ -62706,7 +90216,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_LTE", + "name": "cmoSampleName_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62718,7 +90228,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_EQUAL", + "name": "cmoSampleName_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62730,7 +90240,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_GT", + "name": "cmoSampleName_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62742,7 +90252,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_GTE", + "name": "cmoSampleName_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62754,7 +90264,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_LT", + "name": "cmoSampleName_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62766,7 +90276,7 @@ "deprecationReason": null }, { - "name": "smileRequestId_SHORTEST_LTE", + "name": "cmoSampleName_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62778,7 +90288,7 @@ "deprecationReason": null }, { - "name": "strand_AVERAGE_EQUAL", + "name": "collectionYear_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62790,7 +90300,7 @@ "deprecationReason": null }, { - "name": "strand_AVERAGE_GT", + "name": "collectionYear_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -62802,7 +90312,7 @@ "deprecationReason": null }, { - "name": "strand_AVERAGE_GTE", + "name": "collectionYear_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62814,7 +90324,7 @@ "deprecationReason": null }, { - "name": "strand_AVERAGE_LT", + "name": "collectionYear_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -62826,7 +90336,7 @@ "deprecationReason": null }, { - "name": "strand_AVERAGE_LTE", + "name": "collectionYear_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62838,7 +90348,7 @@ "deprecationReason": null }, { - "name": "strand_EQUAL", + "name": "collectionYear_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62850,7 +90360,7 @@ "deprecationReason": null }, { - "name": "strand_GT", + "name": "collectionYear_GT", "description": null, "type": { "kind": "SCALAR", @@ -62862,7 +90372,7 @@ "deprecationReason": null }, { - "name": "strand_GTE", + "name": "collectionYear_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62874,7 +90384,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_EQUAL", + "name": "collectionYear_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62886,7 +90396,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_GT", + "name": "collectionYear_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62898,7 +90408,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_GTE", + "name": "collectionYear_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62910,7 +90420,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_LT", + "name": "collectionYear_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -62922,7 +90432,7 @@ "deprecationReason": null }, { - "name": "strand_LONGEST_LTE", + "name": "collectionYear_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62934,7 +90444,7 @@ "deprecationReason": null }, { - "name": "strand_LT", + "name": "collectionYear_LT", "description": null, "type": { "kind": "SCALAR", @@ -62946,7 +90456,7 @@ "deprecationReason": null }, { - "name": "strand_LTE", + "name": "collectionYear_LTE", "description": null, "type": { "kind": "SCALAR", @@ -62958,7 +90468,7 @@ "deprecationReason": null }, { - "name": "strand_SHORTEST_EQUAL", + "name": "collectionYear_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -62970,7 +90480,7 @@ "deprecationReason": null }, { - "name": "strand_SHORTEST_GT", + "name": "collectionYear_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -62982,7 +90492,7 @@ "deprecationReason": null }, { - "name": "strand_SHORTEST_GTE", + "name": "collectionYear_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -62994,7 +90504,7 @@ "deprecationReason": null }, { - "name": "strand_SHORTEST_LT", + "name": "collectionYear_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -63006,7 +90516,7 @@ "deprecationReason": null }, { - "name": "strand_SHORTEST_LTE", + "name": "collectionYear_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -63016,170 +90526,97 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleRequestsHasSampleRelationship", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "genePanel_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "genePanel_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Request", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "genePanel_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestUpdateInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "genePanel_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "genePanel_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleDeleteFieldInput", - "ofType": null - } - } + "name": "genePanel_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "genePanel_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "genePanel_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleUpdateConnectionInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -63187,152 +90624,91 @@ "deprecationReason": null }, { - "name": "where", + "name": "genePanel_LONGEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleSampleAliasSampleAliasesIsAliasAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "genePanel_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "genePanel_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SampleSampleAliasSampleAliasesIsAliasNodeAggregateSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleSampleAliasSampleAliasesIsAliasNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "namespace", + "name": "genePanel_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "genePanel_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "genePanel_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "genePanel_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "genePanel_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -63344,7 +90720,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "genePanel_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -63356,7 +90732,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "genePanel_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -63368,7 +90744,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "genePanel_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -63380,7 +90756,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "genePanel_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -63392,207 +90768,119 @@ "deprecationReason": null }, { - "name": "node", + "name": "igoRequestId_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "igoRequestId_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "igoRequestId_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasConnectWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleSampleAliasesIsAliasConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "igoRequestId_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleSampleAliasesIsAliasRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "igoRequestId_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "igoRequestId_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "igoRequestId_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasSort", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "igoRequestId_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "igoRequestId_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "igoRequestId_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -63600,61 +90888,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "igoRequestId_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "igoRequestId_LONGEST_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "igoRequestId_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasDeleteInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -63662,34 +90924,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "igoRequestId_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "igoRequestId_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasDisconnectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -63697,121 +90948,67 @@ "deprecationReason": null }, { - "name": "where", + "name": "igoRequestId_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "igoRequestId_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "igoRequestId_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "igoRequestId_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "igoRequestId_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_AVERAGE_EQUAL", + "name": "importDate_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -63823,7 +91020,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GT", + "name": "importDate_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -63835,7 +91032,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_GTE", + "name": "importDate_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -63847,7 +91044,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LT", + "name": "importDate_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -63859,7 +91056,7 @@ "deprecationReason": null }, { - "name": "namespace_AVERAGE_LTE", + "name": "importDate_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -63871,7 +91068,7 @@ "deprecationReason": null }, { - "name": "namespace_EQUAL", + "name": "importDate_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -63883,7 +91080,7 @@ "deprecationReason": null }, { - "name": "namespace_GT", + "name": "importDate_GT", "description": null, "type": { "kind": "SCALAR", @@ -63895,7 +91092,7 @@ "deprecationReason": null }, { - "name": "namespace_GTE", + "name": "importDate_GTE", "description": null, "type": { "kind": "SCALAR", @@ -63907,7 +91104,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_EQUAL", + "name": "importDate_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -63919,7 +91116,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_GT", + "name": "importDate_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -63931,7 +91128,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_GTE", + "name": "importDate_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -63943,7 +91140,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_LT", + "name": "importDate_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -63955,7 +91152,7 @@ "deprecationReason": null }, { - "name": "namespace_LONGEST_LTE", + "name": "importDate_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -63967,7 +91164,7 @@ "deprecationReason": null }, { - "name": "namespace_LT", + "name": "importDate_LT", "description": null, "type": { "kind": "SCALAR", @@ -63979,7 +91176,7 @@ "deprecationReason": null }, { - "name": "namespace_LTE", + "name": "importDate_LTE", "description": null, "type": { "kind": "SCALAR", @@ -63991,7 +91188,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_EQUAL", + "name": "importDate_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -64003,7 +91200,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GT", + "name": "importDate_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -64015,7 +91212,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_GTE", + "name": "importDate_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -64027,7 +91224,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_LT", + "name": "importDate_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -64039,7 +91236,7 @@ "deprecationReason": null }, { - "name": "namespace_SHORTEST_LTE", + "name": "importDate_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -64051,7 +91248,7 @@ "deprecationReason": null }, { - "name": "value_AVERAGE_EQUAL", + "name": "investigatorSampleId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -64063,7 +91260,7 @@ "deprecationReason": null }, { - "name": "value_AVERAGE_GT", + "name": "investigatorSampleId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -64075,7 +91272,7 @@ "deprecationReason": null }, { - "name": "value_AVERAGE_GTE", + "name": "investigatorSampleId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -64087,7 +91284,7 @@ "deprecationReason": null }, { - "name": "value_AVERAGE_LT", + "name": "investigatorSampleId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -64099,7 +91296,7 @@ "deprecationReason": null }, { - "name": "value_AVERAGE_LTE", + "name": "investigatorSampleId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -64111,7 +91308,7 @@ "deprecationReason": null }, { - "name": "value_EQUAL", + "name": "investigatorSampleId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -64123,7 +91320,7 @@ "deprecationReason": null }, { - "name": "value_GT", + "name": "investigatorSampleId_GT", "description": null, "type": { "kind": "SCALAR", @@ -64135,7 +91332,7 @@ "deprecationReason": null }, { - "name": "value_GTE", + "name": "investigatorSampleId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -64147,7 +91344,7 @@ "deprecationReason": null }, { - "name": "value_LONGEST_EQUAL", + "name": "investigatorSampleId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -64159,7 +91356,7 @@ "deprecationReason": null }, { - "name": "value_LONGEST_GT", + "name": "investigatorSampleId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -64171,7 +91368,7 @@ "deprecationReason": null }, { - "name": "value_LONGEST_GTE", + "name": "investigatorSampleId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -64183,7 +91380,7 @@ "deprecationReason": null }, { - "name": "value_LONGEST_LT", + "name": "investigatorSampleId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -64195,7 +91392,7 @@ "deprecationReason": null }, { - "name": "value_LONGEST_LTE", + "name": "investigatorSampleId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -64207,7 +91404,7 @@ "deprecationReason": null }, { - "name": "value_LT", + "name": "investigatorSampleId_LT", "description": null, "type": { "kind": "SCALAR", @@ -64219,7 +91416,7 @@ "deprecationReason": null }, { - "name": "value_LTE", + "name": "investigatorSampleId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -64231,7 +91428,7 @@ "deprecationReason": null }, { - "name": "value_SHORTEST_EQUAL", + "name": "investigatorSampleId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -64243,7 +91440,7 @@ "deprecationReason": null }, { - "name": "value_SHORTEST_GT", + "name": "investigatorSampleId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -64255,7 +91452,7 @@ "deprecationReason": null }, { - "name": "value_SHORTEST_GTE", + "name": "investigatorSampleId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -64267,7 +91464,7 @@ "deprecationReason": null }, { - "name": "value_SHORTEST_LT", + "name": "investigatorSampleId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -64279,7 +91476,7 @@ "deprecationReason": null }, { - "name": "value_SHORTEST_LTE", + "name": "investigatorSampleId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -64289,170 +91486,61 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleSampleAliasesIsAliasRelationship", - "description": null, - "fields": [ - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleAlias", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "node", + "name": "libraries_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasUpdateInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "connect", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectFieldInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "create", + "name": "libraries_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "libraries_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "libraries_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "libraries_AVERAGE_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasUpdateConnectionInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -64460,500 +91548,251 @@ "deprecationReason": null }, { - "name": "where", + "name": "libraries_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleSampleMetadataHasMetadataSampleMetadataAggregationSelection", - "description": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", + "name": "libraries_GT", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "SampleSampleMetadataHasMetadataSampleMetadataNodeAggregateSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SampleSampleMetadataHasMetadataSampleMetadataNodeAggregateSelection", - "description": null, - "fields": [ - { - "name": "additionalProperties", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baitSet", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cfDNA2dBarcode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cmoInfoIgoId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cmoPatientId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cmoSampleIdFields", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cmoSampleName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "collectionYear", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } - }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "libraries_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "libraries_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "libraries_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "libraries_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraries", + "name": "libraries_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "libraries_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation", + "name": "libraries_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId", + "name": "libraries_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports", + "name": "libraries_SHORTEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "libraries_SHORTEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName", + "name": "libraries_SHORTEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleOrigin", + "name": "libraries_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType", + "name": "libraries_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex", + "name": "oncotreeCode_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species", + "name": "oncotreeCode_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation", + "name": "oncotreeCode_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId", + "name": "oncotreeCode_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "oncotreeCode_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleSort", - "description": "Fields to sort Samples by. The order in which sorts are applied is not guaranteed when specifying many fields in one SampleSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "datasource", + "name": "oncotreeCode_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -64961,11 +91800,11 @@ "deprecationReason": null }, { - "name": "revisable", + "name": "oncotreeCode_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -64973,11 +91812,11 @@ "deprecationReason": null }, { - "name": "sampleCategory", + "name": "oncotreeCode_GTE", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -64985,11 +91824,11 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "oncotreeCode_LONGEST_EQUAL", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -64997,34 +91836,23 @@ "deprecationReason": null }, { - "name": "smileSampleId", + "name": "oncotreeCode_LONGEST_GT", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleUpdateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "datasource", + "name": "oncotreeCode_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65032,71 +91860,47 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadata", + "name": "oncotreeCode_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "patientsHasSample", + "name": "oncotreeCode_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestsHasSample", + "name": "oncotreeCode_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "revisable", + "name": "oncotreeCode_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65104,31 +91908,23 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAlias", + "name": "oncotreeCode_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasUpdateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory", + "name": "oncotreeCode_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65136,11 +91932,11 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "oncotreeCode_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65148,74 +91944,47 @@ "deprecationReason": null }, { - "name": "smileSampleId", + "name": "oncotreeCode_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "oncotreeCode_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "preservation_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource", + "name": "preservation_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65223,11 +91992,11 @@ "deprecationReason": null }, { - "name": "datasource_CONTAINS", + "name": "preservation_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65235,11 +92004,11 @@ "deprecationReason": null }, { - "name": "datasource_ENDS_WITH", + "name": "preservation_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65247,27 +92016,19 @@ "deprecationReason": null }, { - "name": "datasource_IN", + "name": "preservation_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_NOT", + "name": "preservation_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -65279,11 +92040,11 @@ "deprecationReason": null }, { - "name": "datasource_NOT_CONTAINS", + "name": "preservation_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65291,11 +92052,11 @@ "deprecationReason": null }, { - "name": "datasource_NOT_ENDS_WITH", + "name": "preservation_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65303,31 +92064,23 @@ "deprecationReason": null }, { - "name": "datasource_NOT_IN", + "name": "preservation_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "datasource_NOT_STARTS_WITH", + "name": "preservation_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65335,11 +92088,11 @@ "deprecationReason": null }, { - "name": "datasource_STARTS_WITH", + "name": "preservation_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65347,11 +92100,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadataAggregate", + "name": "preservation_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65359,11 +92112,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadataConnection_ALL", + "name": "preservation_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65371,11 +92124,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadataConnection_NONE", + "name": "preservation_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65383,11 +92136,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadataConnection_SINGLE", + "name": "preservation_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65395,11 +92148,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadataConnection_SOME", + "name": "preservation_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleHasMetadataSampleMetadataConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65407,11 +92160,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadata_ALL", - "description": "Return Samples where all of the related SampleMetadata match this filter", + "name": "preservation_SHORTEST_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65419,11 +92172,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadata_NONE", - "description": "Return Samples where none of the related SampleMetadata match this filter", + "name": "preservation_SHORTEST_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65431,11 +92184,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadata_SINGLE", - "description": "Return Samples where one of the related SampleMetadata match this filter", + "name": "preservation_SHORTEST_LT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65443,11 +92196,11 @@ "deprecationReason": null }, { - "name": "hasMetadataSampleMetadata_SOME", - "description": "Return Samples where some of the related SampleMetadata match this filter", + "name": "preservation_SHORTEST_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65455,11 +92208,11 @@ "deprecationReason": null }, { - "name": "patientsHasSampleAggregate", + "name": "primaryId_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleAggregateInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65467,11 +92220,11 @@ "deprecationReason": null }, { - "name": "patientsHasSampleConnection_ALL", + "name": "primaryId_AVERAGE_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65479,11 +92232,11 @@ "deprecationReason": null }, { - "name": "patientsHasSampleConnection_NONE", + "name": "primaryId_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65491,11 +92244,11 @@ "deprecationReason": null }, { - "name": "patientsHasSampleConnection_SINGLE", + "name": "primaryId_AVERAGE_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65503,11 +92256,11 @@ "deprecationReason": null }, { - "name": "patientsHasSampleConnection_SOME", + "name": "primaryId_AVERAGE_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SamplePatientsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65515,11 +92268,11 @@ "deprecationReason": null }, { - "name": "patientsHasSample_ALL", - "description": "Return Samples where all of the related Patients match this filter", + "name": "primaryId_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -65527,11 +92280,11 @@ "deprecationReason": null }, { - "name": "patientsHasSample_NONE", - "description": "Return Samples where none of the related Patients match this filter", + "name": "primaryId_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65539,11 +92292,11 @@ "deprecationReason": null }, { - "name": "patientsHasSample_SINGLE", - "description": "Return Samples where one of the related Patients match this filter", + "name": "primaryId_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65551,11 +92304,11 @@ "deprecationReason": null }, { - "name": "patientsHasSample_SOME", - "description": "Return Samples where some of the related Patients match this filter", + "name": "primaryId_LONGEST_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "PatientWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65563,11 +92316,11 @@ "deprecationReason": null }, { - "name": "requestsHasSampleAggregate", + "name": "primaryId_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleAggregateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65575,11 +92328,11 @@ "deprecationReason": null }, { - "name": "requestsHasSampleConnection_ALL", + "name": "primaryId_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65587,11 +92340,11 @@ "deprecationReason": null }, { - "name": "requestsHasSampleConnection_NONE", + "name": "primaryId_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65599,11 +92352,11 @@ "deprecationReason": null }, { - "name": "requestsHasSampleConnection_SINGLE", + "name": "primaryId_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65611,11 +92364,11 @@ "deprecationReason": null }, { - "name": "requestsHasSampleConnection_SOME", + "name": "primaryId_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleRequestsHasSampleConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65623,11 +92376,11 @@ "deprecationReason": null }, { - "name": "requestsHasSample_ALL", - "description": "Return Samples where all of the related Requests match this filter", + "name": "primaryId_LTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65635,11 +92388,11 @@ "deprecationReason": null }, { - "name": "requestsHasSample_NONE", - "description": "Return Samples where none of the related Requests match this filter", + "name": "primaryId_SHORTEST_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65647,11 +92400,11 @@ "deprecationReason": null }, { - "name": "requestsHasSample_SINGLE", - "description": "Return Samples where one of the related Requests match this filter", + "name": "primaryId_SHORTEST_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65659,11 +92412,11 @@ "deprecationReason": null }, { - "name": "requestsHasSample_SOME", - "description": "Return Samples where some of the related Requests match this filter", + "name": "primaryId_SHORTEST_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65671,11 +92424,11 @@ "deprecationReason": null }, { - "name": "revisable", + "name": "primaryId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65683,11 +92436,11 @@ "deprecationReason": null }, { - "name": "revisable_NOT", + "name": "primaryId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65695,11 +92448,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAliasAggregate", + "name": "qcReports_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasAggregateInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65707,11 +92460,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAliasConnection_ALL", + "name": "qcReports_AVERAGE_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65719,11 +92472,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAliasConnection_NONE", + "name": "qcReports_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65731,11 +92484,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAliasConnection_SINGLE", + "name": "qcReports_AVERAGE_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65743,11 +92496,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAliasConnection_SOME", + "name": "qcReports_AVERAGE_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleSampleAliasesIsAliasConnectionWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65755,11 +92508,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAlias_ALL", - "description": "Return Samples where all of the related SampleAliases match this filter", + "name": "qcReports_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -65767,11 +92520,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAlias_NONE", - "description": "Return Samples where none of the related SampleAliases match this filter", + "name": "qcReports_GT", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65779,11 +92532,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAlias_SINGLE", - "description": "Return Samples where one of the related SampleAliases match this filter", + "name": "qcReports_GTE", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65791,11 +92544,11 @@ "deprecationReason": null }, { - "name": "sampleAliasesIsAlias_SOME", - "description": "Return Samples where some of the related SampleAliases match this filter", + "name": "qcReports_LONGEST_EQUAL", + "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleAliasWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65803,11 +92556,11 @@ "deprecationReason": null }, { - "name": "sampleCategory", + "name": "qcReports_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65815,11 +92568,11 @@ "deprecationReason": null }, { - "name": "sampleCategory_CONTAINS", + "name": "qcReports_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65827,11 +92580,11 @@ "deprecationReason": null }, { - "name": "sampleCategory_ENDS_WITH", + "name": "qcReports_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65839,31 +92592,23 @@ "deprecationReason": null }, { - "name": "sampleCategory_IN", + "name": "qcReports_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_NOT", + "name": "qcReports_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65871,11 +92616,11 @@ "deprecationReason": null }, { - "name": "sampleCategory_NOT_CONTAINS", + "name": "qcReports_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65883,11 +92628,11 @@ "deprecationReason": null }, { - "name": "sampleCategory_NOT_ENDS_WITH", + "name": "qcReports_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65895,31 +92640,23 @@ "deprecationReason": null }, { - "name": "sampleCategory_NOT_IN", + "name": "qcReports_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleCategory_NOT_STARTS_WITH", + "name": "qcReports_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65927,11 +92664,11 @@ "deprecationReason": null }, { - "name": "sampleCategory_STARTS_WITH", + "name": "qcReports_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65939,11 +92676,11 @@ "deprecationReason": null }, { - "name": "sampleClass", + "name": "qcReports_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -65951,11 +92688,11 @@ "deprecationReason": null }, { - "name": "sampleClass_CONTAINS", + "name": "sampleClass_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65963,11 +92700,11 @@ "deprecationReason": null }, { - "name": "sampleClass_ENDS_WITH", + "name": "sampleClass_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -65975,31 +92712,23 @@ "deprecationReason": null }, { - "name": "sampleClass_IN", + "name": "sampleClass_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_NOT", + "name": "sampleClass_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -66007,11 +92736,11 @@ "deprecationReason": null }, { - "name": "sampleClass_NOT_CONTAINS", + "name": "sampleClass_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -66019,7 +92748,7 @@ "deprecationReason": null }, { - "name": "sampleClass_NOT_ENDS_WITH", + "name": "sampleClass_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -66031,31 +92760,23 @@ "deprecationReason": null }, { - "name": "sampleClass_NOT_IN", + "name": "sampleClass_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass_NOT_STARTS_WITH", + "name": "sampleClass_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66063,11 +92784,11 @@ "deprecationReason": null }, { - "name": "sampleClass_STARTS_WITH", + "name": "sampleClass_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66075,11 +92796,11 @@ "deprecationReason": null }, { - "name": "smileSampleId", + "name": "sampleClass_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66087,11 +92808,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_CONTAINS", + "name": "sampleClass_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66099,11 +92820,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_ENDS_WITH", + "name": "sampleClass_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66111,31 +92832,23 @@ "deprecationReason": null }, { - "name": "smileSampleId_IN", + "name": "sampleClass_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_NOT", + "name": "sampleClass_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66143,11 +92856,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_NOT_CONTAINS", + "name": "sampleClass_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66155,11 +92868,11 @@ "deprecationReason": null }, { - "name": "smileSampleId_NOT_ENDS_WITH", + "name": "sampleClass_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66167,31 +92880,23 @@ "deprecationReason": null }, { - "name": "smileSampleId_NOT_IN", + "name": "sampleClass_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_NOT_STARTS_WITH", + "name": "sampleClass_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66199,654 +92904,227 @@ "deprecationReason": null }, { - "name": "smileSampleId_STARTS_WITH", + "name": "sampleClass_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SamplesConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "sampleClass_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "sampleName_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "sampleName_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SortDirection", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ASC", - "description": "Sort by field values in ascending order.", + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "DESC", - "description": "Sort by field values in descending order.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Status", - "description": null, - "fields": [ - { - "name": "requestMetadataHasStatus", + "name": "sampleName_AVERAGE_GTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadata", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataHasStatusAggregate", + "name": "sampleName_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleName_AVERAGE_LTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "StatusRequestMetadataRequestMetadataHasStatusAggregationSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataHasStatusConnection", + "name": "sampleName_EQUAL", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StatusRequestMetadataHasStatusConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataHasStatus", + "name": "sampleName_GT", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataOptions", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadata", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataHasStatusAggregate", + "name": "sampleName_GTE", "description": null, - "args": [ - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "OBJECT", - "name": "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataHasStatusConnection", + "name": "sampleName_LONGEST_EQUAL", "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionSort", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StatusSampleMetadataHasStatusConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationReport", + "name": "sampleName_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationStatus", + "name": "sampleName_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "sampleName_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationReport", + "name": "sampleName_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "requestMetadataHasStatus", + "name": "sampleName_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataHasStatus", + "name": "sampleName_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusConnectWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "sampleName_SHORTEST_EQUAL", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "requestMetadataHasStatus", + "name": "sampleName_SHORTEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66854,11 +93132,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatus", + "name": "sampleName_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusFieldInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -66866,195 +93144,115 @@ "deprecationReason": null }, { - "name": "validationReport", + "name": "sampleName_SHORTEST_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationStatus", + "name": "sampleName_SHORTEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusDeleteInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "requestMetadataHasStatus", + "name": "sampleOrigin_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataHasStatus", + "name": "sampleOrigin_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleOrigin_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusDisconnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "requestMetadataHasStatus", + "name": "sampleOrigin_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataHasStatus", + "name": "sampleOrigin_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusEdge", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "sampleOrigin_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "sampleOrigin_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusOptions", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "limit", + "name": "sampleOrigin_GTE", "description": null, "type": { "kind": "SCALAR", @@ -67066,7 +93264,7 @@ "deprecationReason": null }, { - "name": "offset", + "name": "sampleOrigin_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67078,129 +93276,67 @@ "deprecationReason": null }, { - "name": "sort", - "description": "Specify one or more StatusSort objects to sort Statuses by. The sorts will be applied in the order in which they are arranged in the array.", + "name": "sampleOrigin_LONGEST_GT", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSort", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRelationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "requestMetadataHasStatus", + "name": "sampleOrigin_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleMetadataHasStatus", + "name": "sampleOrigin_LONGEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "sampleOrigin_LONGEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "sampleOrigin_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "sampleOrigin_LTE", "description": null, "type": { "kind": "SCALAR", @@ -67212,7 +93348,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "sampleOrigin_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67224,7 +93360,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "sampleOrigin_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -67236,7 +93372,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "sampleOrigin_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -67248,7 +93384,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "sampleOrigin_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -67260,207 +93396,119 @@ "deprecationReason": null }, { - "name": "node", + "name": "sampleOrigin_SHORTEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "sampleType_AVERAGE_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "sampleType_AVERAGE_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataConnectWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusRequestMetadataHasStatusConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "sampleType_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StatusRequestMetadataHasStatusRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "sampleType_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "sampleType_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "sampleType_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataSort", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "sampleType_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "sampleType_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "sampleType_LONGEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -67468,61 +93516,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "sampleType_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "sampleType_LONGEST_GTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusDeleteFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "delete", + "name": "sampleType_LONGEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDeleteInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -67530,34 +93552,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "sampleType_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusDisconnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "disconnect", + "name": "sampleType_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDisconnectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -67565,121 +93576,79 @@ "deprecationReason": null }, { - "name": "where", + "name": "sampleType_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "sampleType_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sampleType_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "sampleType_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "sampleType_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "sampleType_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_EQUAL", + "name": "sex_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67691,7 +93660,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GT", + "name": "sex_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -67703,7 +93672,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_GTE", + "name": "sex_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -67715,7 +93684,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LT", + "name": "sex_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -67727,7 +93696,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_AVERAGE_LTE", + "name": "sex_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -67739,7 +93708,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_EQUAL", + "name": "sex_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67751,7 +93720,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_GT", + "name": "sex_GT", "description": null, "type": { "kind": "SCALAR", @@ -67763,7 +93732,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_GTE", + "name": "sex_GTE", "description": null, "type": { "kind": "SCALAR", @@ -67775,7 +93744,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_EQUAL", + "name": "sex_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67787,7 +93756,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GT", + "name": "sex_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -67799,7 +93768,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GTE", + "name": "sex_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -67811,7 +93780,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LT", + "name": "sex_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -67823,7 +93792,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LTE", + "name": "sex_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -67835,7 +93804,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LT", + "name": "sex_LT", "description": null, "type": { "kind": "SCALAR", @@ -67847,7 +93816,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_LTE", + "name": "sex_LTE", "description": null, "type": { "kind": "SCALAR", @@ -67859,7 +93828,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_EQUAL", + "name": "sex_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67871,7 +93840,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GT", + "name": "sex_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -67883,7 +93852,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GTE", + "name": "sex_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -67895,7 +93864,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LT", + "name": "sex_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -67907,7 +93876,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LTE", + "name": "sex_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -67919,7 +93888,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_EQUAL", + "name": "species_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67931,7 +93900,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_GT", + "name": "species_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -67943,7 +93912,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_GTE", + "name": "species_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -67955,7 +93924,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_LT", + "name": "species_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -67967,7 +93936,7 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_LTE", + "name": "species_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -67979,7 +93948,7 @@ "deprecationReason": null }, { - "name": "importDate_EQUAL", + "name": "species_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -67991,7 +93960,7 @@ "deprecationReason": null }, { - "name": "importDate_GT", + "name": "species_GT", "description": null, "type": { "kind": "SCALAR", @@ -68003,7 +93972,7 @@ "deprecationReason": null }, { - "name": "importDate_GTE", + "name": "species_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68015,7 +93984,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_EQUAL", + "name": "species_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -68027,7 +93996,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_GT", + "name": "species_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -68039,7 +94008,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_GTE", + "name": "species_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68051,7 +94020,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_LT", + "name": "species_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -68063,7 +94032,7 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_LTE", + "name": "species_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -68075,7 +94044,7 @@ "deprecationReason": null }, { - "name": "importDate_LT", + "name": "species_LT", "description": null, "type": { "kind": "SCALAR", @@ -68087,7 +94056,7 @@ "deprecationReason": null }, { - "name": "importDate_LTE", + "name": "species_LTE", "description": null, "type": { "kind": "SCALAR", @@ -68099,7 +94068,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_EQUAL", + "name": "species_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -68111,7 +94080,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_GT", + "name": "species_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -68123,7 +94092,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_GTE", + "name": "species_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68135,7 +94104,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_LT", + "name": "species_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -68147,7 +94116,7 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_LTE", + "name": "species_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -68159,7 +94128,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_EQUAL", + "name": "tissueLocation_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -68171,7 +94140,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_GT", + "name": "tissueLocation_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -68183,7 +94152,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_GTE", + "name": "tissueLocation_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68195,7 +94164,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_LT", + "name": "tissueLocation_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -68207,7 +94176,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_AVERAGE_LTE", + "name": "tissueLocation_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -68219,7 +94188,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_EQUAL", + "name": "tissueLocation_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -68231,7 +94200,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_GT", + "name": "tissueLocation_GT", "description": null, "type": { "kind": "SCALAR", @@ -68243,7 +94212,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_GTE", + "name": "tissueLocation_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68255,7 +94224,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_EQUAL", + "name": "tissueLocation_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -68267,7 +94236,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_GT", + "name": "tissueLocation_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -68279,7 +94248,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_GTE", + "name": "tissueLocation_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68291,7 +94260,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_LT", + "name": "tissueLocation_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -68303,7 +94272,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LONGEST_LTE", + "name": "tissueLocation_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -68315,7 +94284,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LT", + "name": "tissueLocation_LT", "description": null, "type": { "kind": "SCALAR", @@ -68327,7 +94296,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_LTE", + "name": "tissueLocation_LTE", "description": null, "type": { "kind": "SCALAR", @@ -68339,7 +94308,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_EQUAL", + "name": "tissueLocation_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -68351,7 +94320,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_GT", + "name": "tissueLocation_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -68363,7 +94332,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_GTE", + "name": "tissueLocation_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68375,7 +94344,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_LT", + "name": "tissueLocation_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -68387,7 +94356,7 @@ "deprecationReason": null }, { - "name": "requestMetadataJson_SHORTEST_LTE", + "name": "tissueLocation_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -68397,170 +94366,97 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusRequestMetadataHasStatusRelationship", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "tubeId_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "tubeId_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadata", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "tubeId_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataUpdateInput", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "tubeId_AVERAGE_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "tubeId_AVERAGE_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "tubeId_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "tubeId_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "tubeId_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusUpdateConnectionInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -68568,172 +94464,191 @@ "deprecationReason": null }, { - "name": "where", + "name": "tubeId_LONGEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusRequestMetadataRequestMetadataHasStatusAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "tubeId_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "tubeId_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "StatusRequestMetadataRequestMetadataHasStatusNodeAggregateSelection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusRequestMetadataRequestMetadataHasStatusNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "igoRequestId", + "name": "tubeId_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "tubeId_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "requestMetadataJson", + "name": "tubeId_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tubeId_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tubeId_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tubeId_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tubeId_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tubeId_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tubeId_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tumorOrNormal_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "tumorOrNormal_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "tumorOrNormal_AVERAGE_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "tumorOrNormal_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -68741,11 +94656,11 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "tumorOrNormal_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -68753,11 +94668,11 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "tumorOrNormal_EQUAL", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -68765,7 +94680,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "tumorOrNormal_GT", "description": null, "type": { "kind": "SCALAR", @@ -68777,7 +94692,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "tumorOrNormal_GTE", "description": null, "type": { "kind": "SCALAR", @@ -68789,207 +94704,119 @@ "deprecationReason": null }, { - "name": "node", + "name": "tumorOrNormal_LONGEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "tumorOrNormal_LONGEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "tumorOrNormal_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataConnectWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusSampleMetadataHasStatusConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "tumorOrNormal_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StatusSampleMetadataHasStatusRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "tumorOrNormal_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "tumorOrNormal_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "tumorOrNormal_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataSort", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "tumorOrNormal_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "tumorOrNormal_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "tumorOrNormal_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -68997,39 +94824,24 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "tumorOrNormal_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusCreateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "tumorOrNormal_SHORTEST_LTE", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -69041,64 +94853,60 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusDeleteFieldInput", + "kind": "OBJECT", + "name": "StatusSampleMetadataHasStatusRelationship", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "delete", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataDeleteInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SampleMetadata", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusDisconnectFieldInput", + "name": "StatusSampleMetadataHasStatusUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "disconnect", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataDisconnectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", + "name": "node", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", + "name": "SampleMetadataUpdateInput", "ofType": null }, "defaultValue": null, @@ -69112,7 +94920,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusFieldInput", + "name": "StatusSampleMetadataHasStatusUpdateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -69155,20 +94963,9 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "delete", "description": null, "type": { "kind": "LIST", @@ -69178,7 +94975,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", + "name": "StatusSampleMetadataHasStatusDeleteFieldInput", "ofType": null } } @@ -69188,7 +94985,7 @@ "deprecationReason": null }, { - "name": "OR", + "name": "disconnect", "description": null, "type": { "kind": "LIST", @@ -69198,7 +94995,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusNodeAggregationWhereInput", + "name": "StatusSampleMetadataHasStatusDisconnectFieldInput", "ofType": null } } @@ -69208,35 +95005,11 @@ "deprecationReason": null }, { - "name": "additionalProperties_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "additionalProperties_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "additionalProperties_AVERAGE_GTE", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -69244,359 +95017,500 @@ "deprecationReason": null }, { - "name": "additionalProperties_AVERAGE_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection", + "description": null, + "fields": [ { - "name": "additionalProperties_AVERAGE_LTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "additionalProperties_GT", + "name": "additionalProperties", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_GTE", + "name": "baitSet", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_EQUAL", + "name": "cfDNA2dBarcode", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_GT", + "name": "cmoInfoIgoId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_GTE", + "name": "cmoPatientId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_LT", + "name": "cmoSampleIdFields", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LONGEST_LTE", + "name": "cmoSampleName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LT", + "name": "collectionYear", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_LTE", + "name": "genePanel", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_EQUAL", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_GT", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_GTE", + "name": "investigatorSampleId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_LT", + "name": "libraries", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "additionalProperties_SHORTEST_LTE", + "name": "oncotreeCode", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_EQUAL", + "name": "preservation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_GT", + "name": "primaryId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_GTE", + "name": "qcReports", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_LT", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_AVERAGE_LTE", + "name": "sampleName", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_EQUAL", + "name": "sampleOrigin", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_GT", + "name": "sampleType", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_GTE", + "name": "sex", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_EQUAL", + "name": "species", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_GT", + "name": "tissueLocation", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_GTE", + "name": "tubeId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_LONGEST_LT", + "name": "tumorOrNormal", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusSort", + "description": "Fields to sort Statuses by. The order in which sorts are applied is not guaranteed when specifying many fields in one StatusSort object.", + "fields": null, + "inputFields": [ { - "name": "baitSet_LONGEST_LTE", + "name": "validationReport", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, @@ -69604,47 +95518,74 @@ "deprecationReason": null }, { - "name": "baitSet_LT", + "name": "validationStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SortDirection", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusUpdateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "baitSet_LTE", + "name": "requestMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusUpdateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_SHORTEST_EQUAL", + "name": "sampleMetadataHasStatus", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusUpdateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_SHORTEST_GT", + "name": "validationReport", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -69652,47 +95593,74 @@ "deprecationReason": null }, { - "name": "baitSet_SHORTEST_GTE", + "name": "validationStatus", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "baitSet_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_EQUAL", + "name": "requestMetadataHasStatusAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusAggregateInput", "ofType": null }, "defaultValue": null, @@ -69700,11 +95668,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_GT", + "name": "requestMetadataHasStatusConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69712,11 +95680,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_GTE", + "name": "requestMetadataHasStatusConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69724,11 +95692,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_LT", + "name": "requestMetadataHasStatusConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69736,11 +95704,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_AVERAGE_LTE", + "name": "requestMetadataHasStatusConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "StatusRequestMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69748,11 +95716,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_EQUAL", - "description": null, + "name": "requestMetadataHasStatus_ALL", + "description": "Return Statuses where all of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69760,11 +95728,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_GT", - "description": null, + "name": "requestMetadataHasStatus_NONE", + "description": "Return Statuses where none of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69772,11 +95740,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_GTE", - "description": null, + "name": "requestMetadataHasStatus_SINGLE", + "description": "Return Statuses where one of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69784,11 +95752,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_EQUAL", - "description": null, + "name": "requestMetadataHasStatus_SOME", + "description": "Return Statuses where some of the related RequestMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69796,11 +95764,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_GT", + "name": "sampleMetadataHasStatusAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusAggregateInput", "ofType": null }, "defaultValue": null, @@ -69808,11 +95776,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_GTE", + "name": "sampleMetadataHasStatusConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69820,11 +95788,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_LT", + "name": "sampleMetadataHasStatusConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69832,11 +95800,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LONGEST_LTE", + "name": "sampleMetadataHasStatusConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69844,11 +95812,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LT", + "name": "sampleMetadataHasStatusConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "StatusSampleMetadataHasStatusConnectionWhere", "ofType": null }, "defaultValue": null, @@ -69856,11 +95824,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_LTE", - "description": null, + "name": "sampleMetadataHasStatus_ALL", + "description": "Return Statuses where all of the related SampleMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69868,11 +95836,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_EQUAL", - "description": null, + "name": "sampleMetadataHasStatus_NONE", + "description": "Return Statuses where none of the related SampleMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69880,11 +95848,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_GT", - "description": null, + "name": "sampleMetadataHasStatus_SINGLE", + "description": "Return Statuses where one of the related SampleMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69892,11 +95860,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_GTE", - "description": null, + "name": "sampleMetadataHasStatus_SOME", + "description": "Return Statuses where some of the related SampleMetadata match this filter", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleMetadataWhere", "ofType": null }, "defaultValue": null, @@ -69904,11 +95872,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_LT", + "name": "validationReport", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -69916,11 +95884,11 @@ "deprecationReason": null }, { - "name": "cfDNA2dBarcode_SHORTEST_LTE", + "name": "validationReport_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -69928,11 +95896,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_EQUAL", + "name": "validationReport_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -69940,23 +95908,31 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_GT", + "name": "validationReport_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_GTE", + "name": "validationReport_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -69964,11 +95940,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_LT", + "name": "validationReport_NOT_CONTAINS", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -69976,11 +95952,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_AVERAGE_LTE", + "name": "validationReport_NOT_ENDS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null, @@ -69988,23 +95964,31 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_EQUAL", + "name": "validationReport_NOT_IN", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_GT", + "name": "validationReport_NOT_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -70012,11 +95996,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_GTE", + "name": "validationReport_STARTS_WITH", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -70024,11 +96008,11 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_LONGEST_EQUAL", + "name": "validationStatus", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -70036,371 +96020,1159 @@ "deprecationReason": null }, { - "name": "cmoInfoIgoId_LONGEST_GT", + "name": "validationStatus_NOT", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StatusesConnection", + "description": null, + "fields": [ { - "name": "cmoInfoIgoId_LONGEST_GTE", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StatusEdge", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_LONGEST_LT", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_LONGEST_LTE", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "description": null, + "fields": [ { - "name": "cmoInfoIgoId_LT", + "name": "longest", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_LTE", + "name": "shortest", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "description": null, + "fields": [ { - "name": "cmoInfoIgoId_SHORTEST_EQUAL", + "name": "longest", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_GT", + "name": "shortest", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Tempo", + "description": null, + "fields": [ { - "name": "cmoInfoIgoId_SHORTEST_GTE", + "name": "hasEventBamCompletes", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamComplete", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_LT", + "name": "hasEventBamCompletesAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TempoBamCompleteHasEventBamCompletesAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId_SHORTEST_LTE", + "name": "hasEventBamCompletesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoHasEventBamCompletesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_EQUAL", + "name": "hasEventMafCompletes", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafComplete", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_GT", + "name": "hasEventMafCompletesAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "TempoMafCompleteHasEventMafCompletesAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_GTE", + "name": "hasEventMafCompletesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoHasEventMafCompletesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_LT", + "name": "hasEventQcCompletes", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcComplete", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_AVERAGE_LTE", + "name": "hasEventQcCompletesAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "TempoQcCompleteHasEventQcCompletesAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_EQUAL", + "name": "hasEventQcCompletesConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoHasEventQcCompletesConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_GT", + "name": "samplesHasTempo", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleOptions", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Sample", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_GTE", + "name": "samplesHasTempoAggregate", "description": null, + "args": [ + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TempoSampleSamplesHasTempoAggregationSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_LONGEST_EQUAL", + "name": "samplesHasTempoConnection", "description": null, + "args": [ + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionSort", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoSamplesHasTempoConnection", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoAggregateSelection", + "description": null, + "fields": [ { - "name": "cmoPatientId_LONGEST_GT", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoBamCompleteHasEventBamCompletesAggregationSelection", + "description": null, + "fields": [ { - "name": "cmoPatientId_LONGEST_GTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_LONGEST_LT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TempoBamCompleteHasEventBamCompletesNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoBamCompleteHasEventBamCompletesNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "cmoPatientId_LONGEST_LTE", + "name": "date", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_LT", + "name": "status", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoConnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoPatientId_LTE", + "name": "hasEventBamCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_EQUAL", + "name": "hasEventMafCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_GT", + "name": "hasEventQcCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId_SHORTEST_GTE", + "name": "samplesHasTempo", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoConnectWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoPatientId_SHORTEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoWhere", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoCreateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoPatientId_SHORTEST_LTE", + "name": "hasEventBamCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesFieldInput", "ofType": null }, "defaultValue": null, @@ -70408,11 +97180,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_AVERAGE_EQUAL", + "name": "hasEventMafCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesFieldInput", "ofType": null }, "defaultValue": null, @@ -70420,11 +97192,11 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_AVERAGE_GT", + "name": "hasEventQcCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesFieldInput", "ofType": null }, "defaultValue": null, @@ -70432,163 +97204,295 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_AVERAGE_GTE", + "name": "samplesHasTempo", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoFieldInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoDeleteInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_AVERAGE_LT", + "name": "hasEventBamCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_AVERAGE_LTE", + "name": "hasEventMafCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_EQUAL", + "name": "hasEventQcCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_GT", + "name": "samplesHasTempo", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoDisconnectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_GTE", + "name": "hasEventBamCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_EQUAL", + "name": "hasEventMafCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_GT", + "name": "hasEventQcCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_GTE", + "name": "samplesHasTempo", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoEdge", + "description": null, + "fields": [ { - "name": "cmoSampleIdFields_LONGEST_LT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_LONGEST_LTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleIdFields_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -70600,7 +97504,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -70612,7 +97516,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -70624,7 +97528,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -70636,7 +97540,7 @@ "deprecationReason": null }, { - "name": "cmoSampleIdFields_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -70648,119 +97552,207 @@ "deprecationReason": null }, { - "name": "cmoSampleName_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "BamCompleteConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoHasEventBamCompletesConnection", + "description": null, + "fields": [ { - "name": "cmoSampleName_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoHasEventBamCompletesRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BamCompleteSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", "ofType": null }, "defaultValue": null, @@ -70768,35 +97760,61 @@ "deprecationReason": null }, { - "name": "cmoSampleName_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BamCompleteWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BamCompleteCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BamCompleteDeleteInput", "ofType": null }, "defaultValue": null, @@ -70804,23 +97822,34 @@ "deprecationReason": null }, { - "name": "cmoSampleName_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BamCompleteDisconnectInput", "ofType": null }, "defaultValue": null, @@ -70828,67 +97857,121 @@ "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "cmoSampleName_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_EQUAL", + "name": "date_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -70900,7 +97983,7 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_GT", + "name": "date_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -70912,7 +97995,7 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_GTE", + "name": "date_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -70924,7 +98007,7 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_LT", + "name": "date_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -70936,7 +98019,7 @@ "deprecationReason": null }, { - "name": "collectionYear_AVERAGE_LTE", + "name": "date_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -70948,7 +98031,7 @@ "deprecationReason": null }, { - "name": "collectionYear_EQUAL", + "name": "date_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -70960,7 +98043,7 @@ "deprecationReason": null }, { - "name": "collectionYear_GT", + "name": "date_GT", "description": null, "type": { "kind": "SCALAR", @@ -70972,7 +98055,7 @@ "deprecationReason": null }, { - "name": "collectionYear_GTE", + "name": "date_GTE", "description": null, "type": { "kind": "SCALAR", @@ -70984,7 +98067,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_EQUAL", + "name": "date_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -70996,7 +98079,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_GT", + "name": "date_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -71008,7 +98091,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_GTE", + "name": "date_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71020,7 +98103,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_LT", + "name": "date_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -71032,7 +98115,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LONGEST_LTE", + "name": "date_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71044,7 +98127,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LT", + "name": "date_LT", "description": null, "type": { "kind": "SCALAR", @@ -71056,7 +98139,7 @@ "deprecationReason": null }, { - "name": "collectionYear_LTE", + "name": "date_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71068,7 +98151,7 @@ "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_EQUAL", + "name": "date_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71080,7 +98163,7 @@ "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_GT", + "name": "date_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -71092,7 +98175,7 @@ "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_GTE", + "name": "date_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71104,7 +98187,7 @@ "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_LT", + "name": "date_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -71116,7 +98199,7 @@ "deprecationReason": null }, { - "name": "collectionYear_SHORTEST_LTE", + "name": "date_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71128,7 +98211,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_EQUAL", + "name": "status_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71140,7 +98223,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GT", + "name": "status_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -71152,7 +98235,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_GTE", + "name": "status_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71164,7 +98247,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LT", + "name": "status_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -71176,7 +98259,7 @@ "deprecationReason": null }, { - "name": "genePanel_AVERAGE_LTE", + "name": "status_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71188,7 +98271,7 @@ "deprecationReason": null }, { - "name": "genePanel_EQUAL", + "name": "status_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71200,7 +98283,7 @@ "deprecationReason": null }, { - "name": "genePanel_GT", + "name": "status_GT", "description": null, "type": { "kind": "SCALAR", @@ -71212,7 +98295,7 @@ "deprecationReason": null }, { - "name": "genePanel_GTE", + "name": "status_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71224,7 +98307,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_EQUAL", + "name": "status_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71236,7 +98319,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_GT", + "name": "status_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -71248,7 +98331,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_GTE", + "name": "status_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71260,7 +98343,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_LT", + "name": "status_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -71272,7 +98355,7 @@ "deprecationReason": null }, { - "name": "genePanel_LONGEST_LTE", + "name": "status_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71284,7 +98367,7 @@ "deprecationReason": null }, { - "name": "genePanel_LT", + "name": "status_LT", "description": null, "type": { "kind": "SCALAR", @@ -71296,7 +98379,7 @@ "deprecationReason": null }, { - "name": "genePanel_LTE", + "name": "status_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71308,7 +98391,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_EQUAL", + "name": "status_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71320,7 +98403,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GT", + "name": "status_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -71332,7 +98415,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_GTE", + "name": "status_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71344,7 +98427,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LT", + "name": "status_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -71356,7 +98439,7 @@ "deprecationReason": null }, { - "name": "genePanel_SHORTEST_LTE", + "name": "status_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71366,145 +98449,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "igoRequestId_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "igoRequestId_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "igoRequestId_AVERAGE_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "igoRequestId_AVERAGE_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoHasEventBamCompletesRelationship", + "description": null, + "fields": [ { - "name": "igoRequestId_AVERAGE_LTE", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamComplete", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BamCompleteUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_GTE", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_EQUAL", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GT", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_GTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LT", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -71512,43 +98620,70 @@ "deprecationReason": null }, { - "name": "igoRequestId_LONGEST_LTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "igoRequestId_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -71560,7 +98695,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -71572,7 +98707,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71584,7 +98719,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -71596,7 +98731,7 @@ "deprecationReason": null }, { - "name": "igoRequestId_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71608,119 +98743,207 @@ "deprecationReason": null }, { - "name": "importDate_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "MafCompleteConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoHasEventMafCompletesConnection", + "description": null, + "fields": [ { - "name": "importDate_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoHasEventMafCompletesRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MafCompleteSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", "ofType": null }, "defaultValue": null, @@ -71728,35 +98951,61 @@ "deprecationReason": null }, { - "name": "importDate_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MafCompleteWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MafCompleteCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MafCompleteDeleteInput", "ofType": null }, "defaultValue": null, @@ -71764,23 +99013,34 @@ "deprecationReason": null }, { - "name": "importDate_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MafCompleteDisconnectInput", "ofType": null }, "defaultValue": null, @@ -71788,67 +99048,121 @@ "deprecationReason": null }, { - "name": "importDate_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "importDate_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_EQUAL", + "name": "date_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71860,7 +99174,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_GT", + "name": "date_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -71872,7 +99186,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_GTE", + "name": "date_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71884,7 +99198,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_LT", + "name": "date_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -71896,7 +99210,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_AVERAGE_LTE", + "name": "date_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -71908,7 +99222,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_EQUAL", + "name": "date_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71920,7 +99234,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_GT", + "name": "date_GT", "description": null, "type": { "kind": "SCALAR", @@ -71932,7 +99246,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_GTE", + "name": "date_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71944,7 +99258,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_EQUAL", + "name": "date_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -71956,7 +99270,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_GT", + "name": "date_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -71968,7 +99282,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_GTE", + "name": "date_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -71980,7 +99294,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_LT", + "name": "date_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -71992,7 +99306,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LONGEST_LTE", + "name": "date_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72004,7 +99318,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LT", + "name": "date_LT", "description": null, "type": { "kind": "SCALAR", @@ -72016,7 +99330,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_LTE", + "name": "date_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72028,7 +99342,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_EQUAL", + "name": "date_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72040,7 +99354,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_GT", + "name": "date_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -72052,7 +99366,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_GTE", + "name": "date_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72064,7 +99378,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_LT", + "name": "date_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -72076,7 +99390,7 @@ "deprecationReason": null }, { - "name": "investigatorSampleId_SHORTEST_LTE", + "name": "date_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72088,7 +99402,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_EQUAL", + "name": "normalPrimaryId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72100,7 +99414,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_GT", + "name": "normalPrimaryId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -72112,7 +99426,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_GTE", + "name": "normalPrimaryId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72124,7 +99438,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_LT", + "name": "normalPrimaryId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -72136,7 +99450,7 @@ "deprecationReason": null }, { - "name": "libraries_AVERAGE_LTE", + "name": "normalPrimaryId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72148,7 +99462,7 @@ "deprecationReason": null }, { - "name": "libraries_EQUAL", + "name": "normalPrimaryId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72160,7 +99474,7 @@ "deprecationReason": null }, { - "name": "libraries_GT", + "name": "normalPrimaryId_GT", "description": null, "type": { "kind": "SCALAR", @@ -72172,7 +99486,7 @@ "deprecationReason": null }, { - "name": "libraries_GTE", + "name": "normalPrimaryId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72184,7 +99498,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_EQUAL", + "name": "normalPrimaryId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72196,7 +99510,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_GT", + "name": "normalPrimaryId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -72208,7 +99522,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_GTE", + "name": "normalPrimaryId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72220,7 +99534,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_LT", + "name": "normalPrimaryId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -72232,7 +99546,7 @@ "deprecationReason": null }, { - "name": "libraries_LONGEST_LTE", + "name": "normalPrimaryId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72244,7 +99558,7 @@ "deprecationReason": null }, { - "name": "libraries_LT", + "name": "normalPrimaryId_LT", "description": null, "type": { "kind": "SCALAR", @@ -72256,7 +99570,7 @@ "deprecationReason": null }, { - "name": "libraries_LTE", + "name": "normalPrimaryId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72268,7 +99582,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_EQUAL", + "name": "normalPrimaryId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72280,7 +99594,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_GT", + "name": "normalPrimaryId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -72292,7 +99606,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_GTE", + "name": "normalPrimaryId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72304,7 +99618,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_LT", + "name": "normalPrimaryId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -72316,7 +99630,7 @@ "deprecationReason": null }, { - "name": "libraries_SHORTEST_LTE", + "name": "normalPrimaryId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72328,7 +99642,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_EQUAL", + "name": "status_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72340,7 +99654,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_GT", + "name": "status_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -72352,7 +99666,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_GTE", + "name": "status_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72364,7 +99678,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_LT", + "name": "status_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -72376,7 +99690,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_AVERAGE_LTE", + "name": "status_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72388,7 +99702,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_EQUAL", + "name": "status_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72400,7 +99714,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_GT", + "name": "status_GT", "description": null, "type": { "kind": "SCALAR", @@ -72412,7 +99726,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_GTE", + "name": "status_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72424,7 +99738,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LONGEST_EQUAL", + "name": "status_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72436,7 +99750,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LONGEST_GT", + "name": "status_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -72448,7 +99762,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LONGEST_GTE", + "name": "status_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72460,7 +99774,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LONGEST_LT", + "name": "status_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -72472,7 +99786,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LONGEST_LTE", + "name": "status_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72484,7 +99798,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LT", + "name": "status_LT", "description": null, "type": { "kind": "SCALAR", @@ -72496,7 +99810,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_LTE", + "name": "status_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72508,7 +99822,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_EQUAL", + "name": "status_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -72520,7 +99834,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_GT", + "name": "status_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -72532,7 +99846,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_GTE", + "name": "status_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72544,7 +99858,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_LT", + "name": "status_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -72556,7 +99870,7 @@ "deprecationReason": null }, { - "name": "oncotreeCode_SHORTEST_LTE", + "name": "status_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72566,145 +99880,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preservation_AVERAGE_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoHasEventMafCompletesRelationship", + "description": null, + "fields": [ { - "name": "preservation_AVERAGE_LTE", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafComplete", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "preservation_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "MafCompleteUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "preservation_GTE", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_LONGEST_EQUAL", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_LONGEST_GT", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_LONGEST_GTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_LONGEST_LT", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -72712,43 +100051,70 @@ "deprecationReason": null }, { - "name": "preservation_LONGEST_LTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "preservation_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -72760,7 +100126,7 @@ "deprecationReason": null }, { - "name": "preservation_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -72772,7 +100138,7 @@ "deprecationReason": null }, { - "name": "preservation_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -72784,7 +100150,7 @@ "deprecationReason": null }, { - "name": "preservation_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -72796,7 +100162,7 @@ "deprecationReason": null }, { - "name": "preservation_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -72808,119 +100174,207 @@ "deprecationReason": null }, { - "name": "primaryId_AVERAGE_EQUAL", + "name": "node", "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", + "type": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "QcCompleteConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoHasEventQcCompletesConnection", + "description": null, + "fields": [ { - "name": "primaryId_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoHasEventQcCompletesRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "QcCompleteSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", "ofType": null }, "defaultValue": null, @@ -72928,35 +100382,61 @@ "deprecationReason": null }, { - "name": "primaryId_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "QcCompleteDeleteInput", "ofType": null }, "defaultValue": null, @@ -72964,23 +100444,34 @@ "deprecationReason": null }, { - "name": "primaryId_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "QcCompleteDisconnectInput", "ofType": null }, "defaultValue": null, @@ -72988,67 +100479,121 @@ "deprecationReason": null }, { - "name": "primaryId_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "primaryId_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports_AVERAGE_EQUAL", + "name": "date_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73060,7 +100605,7 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_GT", + "name": "date_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -73072,7 +100617,7 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_GTE", + "name": "date_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73084,7 +100629,7 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_LT", + "name": "date_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -73096,7 +100641,7 @@ "deprecationReason": null }, { - "name": "qcReports_AVERAGE_LTE", + "name": "date_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73108,7 +100653,7 @@ "deprecationReason": null }, { - "name": "qcReports_EQUAL", + "name": "date_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73120,7 +100665,7 @@ "deprecationReason": null }, { - "name": "qcReports_GT", + "name": "date_GT", "description": null, "type": { "kind": "SCALAR", @@ -73132,7 +100677,7 @@ "deprecationReason": null }, { - "name": "qcReports_GTE", + "name": "date_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73144,7 +100689,7 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_EQUAL", + "name": "date_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73156,7 +100701,7 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_GT", + "name": "date_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73168,7 +100713,7 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_GTE", + "name": "date_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73180,7 +100725,7 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_LT", + "name": "date_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73192,7 +100737,7 @@ "deprecationReason": null }, { - "name": "qcReports_LONGEST_LTE", + "name": "date_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73204,7 +100749,7 @@ "deprecationReason": null }, { - "name": "qcReports_LT", + "name": "date_LT", "description": null, "type": { "kind": "SCALAR", @@ -73216,7 +100761,7 @@ "deprecationReason": null }, { - "name": "qcReports_LTE", + "name": "date_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73228,7 +100773,7 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_EQUAL", + "name": "date_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73240,7 +100785,7 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_GT", + "name": "date_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73252,7 +100797,7 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_GTE", + "name": "date_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73264,7 +100809,7 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_LT", + "name": "date_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73276,7 +100821,7 @@ "deprecationReason": null }, { - "name": "qcReports_SHORTEST_LTE", + "name": "date_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73288,7 +100833,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_EQUAL", + "name": "reason_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73300,7 +100845,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GT", + "name": "reason_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -73312,7 +100857,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GTE", + "name": "reason_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73324,7 +100869,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LT", + "name": "reason_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -73336,7 +100881,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LTE", + "name": "reason_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73348,7 +100893,7 @@ "deprecationReason": null }, { - "name": "sampleClass_EQUAL", + "name": "reason_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73360,7 +100905,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GT", + "name": "reason_GT", "description": null, "type": { "kind": "SCALAR", @@ -73372,7 +100917,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GTE", + "name": "reason_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73384,7 +100929,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_EQUAL", + "name": "reason_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73396,7 +100941,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GT", + "name": "reason_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73408,7 +100953,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GTE", + "name": "reason_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73420,7 +100965,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LT", + "name": "reason_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73432,7 +100977,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LTE", + "name": "reason_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73444,7 +100989,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LT", + "name": "reason_LT", "description": null, "type": { "kind": "SCALAR", @@ -73456,7 +101001,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LTE", + "name": "reason_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73468,7 +101013,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_EQUAL", + "name": "reason_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73480,7 +101025,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GT", + "name": "reason_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73492,7 +101037,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GTE", + "name": "reason_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73504,7 +101049,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LT", + "name": "reason_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73516,7 +101061,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LTE", + "name": "reason_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73528,7 +101073,7 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_EQUAL", + "name": "result_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73540,7 +101085,7 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_GT", + "name": "result_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -73552,7 +101097,7 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_GTE", + "name": "result_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73564,7 +101109,7 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_LT", + "name": "result_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -73576,7 +101121,7 @@ "deprecationReason": null }, { - "name": "sampleName_AVERAGE_LTE", + "name": "result_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73588,7 +101133,7 @@ "deprecationReason": null }, { - "name": "sampleName_EQUAL", + "name": "result_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73600,7 +101145,7 @@ "deprecationReason": null }, { - "name": "sampleName_GT", + "name": "result_GT", "description": null, "type": { "kind": "SCALAR", @@ -73612,7 +101157,7 @@ "deprecationReason": null }, { - "name": "sampleName_GTE", + "name": "result_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73624,7 +101169,7 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_EQUAL", + "name": "result_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73636,7 +101181,7 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_GT", + "name": "result_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73648,7 +101193,7 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_GTE", + "name": "result_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73660,7 +101205,7 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_LT", + "name": "result_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73672,7 +101217,7 @@ "deprecationReason": null }, { - "name": "sampleName_LONGEST_LTE", + "name": "result_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73684,7 +101229,7 @@ "deprecationReason": null }, { - "name": "sampleName_LT", + "name": "result_LT", "description": null, "type": { "kind": "SCALAR", @@ -73696,7 +101241,7 @@ "deprecationReason": null }, { - "name": "sampleName_LTE", + "name": "result_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73708,7 +101253,7 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_EQUAL", + "name": "result_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73720,7 +101265,7 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_GT", + "name": "result_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73732,7 +101277,7 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_GTE", + "name": "result_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73744,7 +101289,7 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_LT", + "name": "result_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73756,7 +101301,7 @@ "deprecationReason": null }, { - "name": "sampleName_SHORTEST_LTE", + "name": "result_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73768,7 +101313,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_EQUAL", + "name": "status_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73780,7 +101325,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_GT", + "name": "status_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -73792,7 +101337,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_GTE", + "name": "status_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73804,7 +101349,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_LT", + "name": "status_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -73816,7 +101361,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_AVERAGE_LTE", + "name": "status_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73828,7 +101373,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_EQUAL", + "name": "status_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73840,7 +101385,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_GT", + "name": "status_GT", "description": null, "type": { "kind": "SCALAR", @@ -73852,7 +101397,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_GTE", + "name": "status_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73864,7 +101409,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_EQUAL", + "name": "status_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73876,7 +101421,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_GT", + "name": "status_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73888,7 +101433,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_GTE", + "name": "status_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73900,7 +101445,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_LT", + "name": "status_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73912,7 +101457,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LONGEST_LTE", + "name": "status_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73924,7 +101469,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LT", + "name": "status_LT", "description": null, "type": { "kind": "SCALAR", @@ -73936,7 +101481,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_LTE", + "name": "status_LTE", "description": null, "type": { "kind": "SCALAR", @@ -73948,7 +101493,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_EQUAL", + "name": "status_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -73960,7 +101505,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_GT", + "name": "status_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -73972,7 +101517,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_GTE", + "name": "status_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -73984,7 +101529,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_LT", + "name": "status_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -73996,7 +101541,7 @@ "deprecationReason": null }, { - "name": "sampleOrigin_SHORTEST_LTE", + "name": "status_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -74006,109 +101551,170 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "sampleType_AVERAGE_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoHasEventQcCompletesRelationship", + "description": null, + "fields": [ { - "name": "sampleType_AVERAGE_GT", + "name": "cursor", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_AVERAGE_GTE", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcComplete", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleType_AVERAGE_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "QcCompleteUpdateInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleType_AVERAGE_LTE", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_EQUAL", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_GT", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesDeleteFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_GTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesDisconnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_LONGEST_EQUAL", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -74116,79 +101722,128 @@ "deprecationReason": null }, { - "name": "sampleType_LONGEST_GT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoMafCompleteHasEventMafCompletesAggregationSelection", + "description": null, + "fields": [ { - "name": "sampleType_LONGEST_GTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_LONGEST_LT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TempoMafCompleteHasEventMafCompletesNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoMafCompleteHasEventMafCompletesNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "sampleType_LONGEST_LTE", + "name": "date", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_LT", + "name": "normalPrimaryId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_LTE", + "name": "status", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoOptions", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sampleType_SHORTEST_EQUAL", + "name": "limit", "description": null, "type": { "kind": "SCALAR", @@ -74200,7 +101855,7 @@ "deprecationReason": null }, { - "name": "sampleType_SHORTEST_GT", + "name": "offset", "description": null, "type": { "kind": "SCALAR", @@ -74210,225 +101865,379 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoQcCompleteHasEventQcCompletesAggregationSelection", + "description": null, + "fields": [ { - "name": "sampleType_SHORTEST_GTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleType_SHORTEST_LT", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TempoQcCompleteHasEventQcCompletesNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoQcCompleteHasEventQcCompletesNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "sampleType_SHORTEST_LTE", + "name": "date", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_AVERAGE_EQUAL", + "name": "reason", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_AVERAGE_GT", + "name": "result", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_AVERAGE_GTE", + "name": "status", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoRelationInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sex_AVERAGE_LT", + "name": "hasEventBamCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventBamCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_AVERAGE_LTE", + "name": "hasEventMafCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventMafCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_EQUAL", + "name": "hasEventQcCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_GT", + "name": "samplesHasTempo", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoSampleSamplesHasTempoAggregationSelection", + "description": null, + "fields": [ { - "name": "sex_GTE", + "name": "count", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_LONGEST_EQUAL", + "name": "node", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "TempoSampleSamplesHasTempoNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoSampleSamplesHasTempoNodeAggregateSelection", + "description": null, + "fields": [ { - "name": "sex_LONGEST_GT", + "name": "datasource", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_LONGEST_GTE", + "name": "sampleCategory", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_LONGEST_LT", + "name": "sampleClass", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_LONGEST_LTE", + "name": "smileSampleId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoAggregateInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sex_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sex_SHORTEST_EQUAL", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -74440,7 +102249,7 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_GT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -74452,7 +102261,7 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_GTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -74464,7 +102273,7 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_LT", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -74476,7 +102285,7 @@ "deprecationReason": null }, { - "name": "sex_SHORTEST_LTE", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -74488,119 +102297,207 @@ "deprecationReason": null }, { - "name": "species_AVERAGE_EQUAL", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_AVERAGE_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_AVERAGE_GTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoSamplesHasTempoConnection", + "description": null, + "fields": [ { - "name": "species_AVERAGE_LT", + "name": "edges", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TempoSamplesHasTempoRelationship", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_AVERAGE_LTE", + "name": "pageInfo", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_EQUAL", + "name": "totalCount", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionSort", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleSort", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_GTE", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_LONGEST_EQUAL", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_LONGEST_GT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -74608,35 +102505,61 @@ "deprecationReason": null }, { - "name": "species_LONGEST_GTE", + "name": "node_NOT", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoCreateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_LONGEST_LT", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SampleCreateInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoDeleteFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_LONGEST_LTE", + "name": "delete", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", "ofType": null }, "defaultValue": null, @@ -74644,23 +102567,34 @@ "deprecationReason": null }, { - "name": "species_LT", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoDisconnectFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_LTE", + "name": "disconnect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", "ofType": null }, "defaultValue": null, @@ -74668,67 +102602,121 @@ "deprecationReason": null }, { - "name": "species_SHORTEST_EQUAL", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_SHORTEST_GT", + "name": "connect", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_SHORTEST_GTE", + "name": "create", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species_SHORTEST_LT", + "name": "AND", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "species_SHORTEST_LTE", + "name": "OR", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoNodeAggregationWhereInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_EQUAL", + "name": "datasource_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -74740,7 +102728,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_GT", + "name": "datasource_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -74752,7 +102740,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_GTE", + "name": "datasource_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -74764,7 +102752,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_LT", + "name": "datasource_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -74776,7 +102764,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_AVERAGE_LTE", + "name": "datasource_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -74788,7 +102776,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_EQUAL", + "name": "datasource_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -74800,7 +102788,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_GT", + "name": "datasource_GT", "description": null, "type": { "kind": "SCALAR", @@ -74812,7 +102800,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_GTE", + "name": "datasource_GTE", "description": null, "type": { "kind": "SCALAR", @@ -74824,7 +102812,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_EQUAL", + "name": "datasource_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -74836,7 +102824,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_GT", + "name": "datasource_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -74848,7 +102836,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_GTE", + "name": "datasource_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -74860,7 +102848,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_LT", + "name": "datasource_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -74872,7 +102860,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_LONGEST_LTE", + "name": "datasource_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -74884,7 +102872,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_LT", + "name": "datasource_LT", "description": null, "type": { "kind": "SCALAR", @@ -74896,7 +102884,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_LTE", + "name": "datasource_LTE", "description": null, "type": { "kind": "SCALAR", @@ -74908,7 +102896,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_EQUAL", + "name": "datasource_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -74920,7 +102908,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_GT", + "name": "datasource_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -74932,7 +102920,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_GTE", + "name": "datasource_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -74944,7 +102932,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_LT", + "name": "datasource_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -74956,7 +102944,7 @@ "deprecationReason": null }, { - "name": "tissueLocation_SHORTEST_LTE", + "name": "datasource_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -74968,7 +102956,7 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_EQUAL", + "name": "sampleCategory_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -74980,7 +102968,7 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_GT", + "name": "sampleCategory_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -74992,7 +102980,7 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_GTE", + "name": "sampleCategory_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -75004,7 +102992,7 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_LT", + "name": "sampleCategory_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -75016,7 +103004,7 @@ "deprecationReason": null }, { - "name": "tubeId_AVERAGE_LTE", + "name": "sampleCategory_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -75028,7 +103016,7 @@ "deprecationReason": null }, { - "name": "tubeId_EQUAL", + "name": "sampleCategory_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -75040,7 +103028,7 @@ "deprecationReason": null }, { - "name": "tubeId_GT", + "name": "sampleCategory_GT", "description": null, "type": { "kind": "SCALAR", @@ -75052,7 +103040,7 @@ "deprecationReason": null }, { - "name": "tubeId_GTE", + "name": "sampleCategory_GTE", "description": null, "type": { "kind": "SCALAR", @@ -75064,7 +103052,7 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_EQUAL", + "name": "sampleCategory_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -75076,7 +103064,7 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_GT", + "name": "sampleCategory_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -75088,7 +103076,7 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_GTE", + "name": "sampleCategory_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -75100,7 +103088,7 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_LT", + "name": "sampleCategory_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -75112,7 +103100,7 @@ "deprecationReason": null }, { - "name": "tubeId_LONGEST_LTE", + "name": "sampleCategory_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -75124,7 +103112,7 @@ "deprecationReason": null }, { - "name": "tubeId_LT", + "name": "sampleCategory_LT", "description": null, "type": { "kind": "SCALAR", @@ -75136,7 +103124,7 @@ "deprecationReason": null }, { - "name": "tubeId_LTE", + "name": "sampleCategory_LTE", "description": null, "type": { "kind": "SCALAR", @@ -75148,7 +103136,7 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_EQUAL", + "name": "sampleCategory_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -75160,7 +103148,7 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_GT", + "name": "sampleCategory_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -75172,7 +103160,7 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_GTE", + "name": "sampleCategory_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -75184,7 +103172,7 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_LT", + "name": "sampleCategory_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -75196,7 +103184,7 @@ "deprecationReason": null }, { - "name": "tubeId_SHORTEST_LTE", + "name": "sampleCategory_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -75208,7 +103196,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_EQUAL", + "name": "sampleClass_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -75220,7 +103208,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_GT", + "name": "sampleClass_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -75232,7 +103220,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_GTE", + "name": "sampleClass_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -75244,7 +103232,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_LT", + "name": "sampleClass_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -75256,7 +103244,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_AVERAGE_LTE", + "name": "sampleClass_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -75268,7 +103256,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_EQUAL", + "name": "sampleClass_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -75280,115 +103268,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_LONGEST_EQUAL", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_LONGEST_GT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_LONGEST_GTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_LONGEST_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_LONGEST_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_LT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_LTE", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tumorOrNormal_SHORTEST_EQUAL", + "name": "sampleClass_GT", "description": null, "type": { "kind": "SCALAR", @@ -75400,7 +103280,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_GT", + "name": "sampleClass_GTE", "description": null, "type": { "kind": "SCALAR", @@ -75412,7 +103292,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_GTE", + "name": "sampleClass_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -75424,7 +103304,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_LT", + "name": "sampleClass_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -75436,7 +103316,7 @@ "deprecationReason": null }, { - "name": "tumorOrNormal_SHORTEST_LTE", + "name": "sampleClass_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -75446,170 +103326,85 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusSampleMetadataHasStatusRelationship", - "description": null, - "fields": [ - { - "name": "cursor", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "node", + "name": "sampleClass_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SampleMetadata", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusUpdateConnectionInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "sampleClass_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "SampleMetadataUpdateInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusUpdateFieldInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "connect", + "name": "sampleClass_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "sampleClass_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusCreateFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "delete", + "name": "sampleClass_SHORTEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusDeleteFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "sampleClass_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusDisconnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "update", + "name": "sampleClass_SHORTEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusUpdateConnectionInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -75617,380 +103412,289 @@ "deprecationReason": null }, { - "name": "where", + "name": "sampleClass_SHORTEST_LT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusSampleMetadataSampleMetadataHasStatusAggregationSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "sampleClass_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "smileSampleId_AVERAGE_EQUAL", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StatusSampleMetadataSampleMetadataHasStatusNodeAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "additionalProperties", + "name": "smileSampleId_AVERAGE_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "baitSet", + "name": "smileSampleId_AVERAGE_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cfDNA2dBarcode", + "name": "smileSampleId_AVERAGE_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoInfoIgoId", + "name": "smileSampleId_AVERAGE_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoPatientId", + "name": "smileSampleId_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleIdFields", + "name": "smileSampleId_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "cmoSampleName", + "name": "smileSampleId_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "collectionYear", + "name": "smileSampleId_LONGEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "genePanel", + "name": "smileSampleId_LONGEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "smileSampleId_LONGEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "smileSampleId_LONGEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "investigatorSampleId", + "name": "smileSampleId_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "libraries", + "name": "smileSampleId_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "oncotreeCode", + "name": "smileSampleId_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "preservation", + "name": "smileSampleId_SHORTEST_EQUAL", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryId", + "name": "smileSampleId_SHORTEST_GT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "qcReports", + "name": "smileSampleId_SHORTEST_GTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleClass", + "name": "smileSampleId_SHORTEST_LT", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sampleName", + "name": "smileSampleId_SHORTEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TempoSamplesHasTempoRelationship", + "description": null, + "fields": [ { - "name": "sampleOrigin", + "name": "cursor", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -75998,7 +103702,7 @@ "deprecationReason": null }, { - "name": "sampleType", + "name": "node", "description": null, "args": [], "type": { @@ -76006,111 +103710,134 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", + "name": "Sample", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sex", + "name": "node", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SampleUpdateInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoUpdateFieldInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "species", + "name": "connect", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tissueLocation", + "name": "create", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoCreateFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tubeId", + "name": "delete", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoDeleteFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "tumorOrNormal", + "name": "disconnect", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoDisconnectFieldInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StatusSort", - "description": "Fields to sort Statuses by. The order in which sorts are applied is not guaranteed when specifying many fields in one StatusSort object.", - "fields": null, - "inputFields": [ + }, { - "name": "validationReport", + "name": "update", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -76118,11 +103845,11 @@ "deprecationReason": null }, { - "name": "validationStatus", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "SortDirection", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76136,12 +103863,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "StatusUpdateInput", + "name": "TempoUpdateInput", "description": null, "fields": null, "inputFields": [ { - "name": "requestMetadataHasStatus", + "name": "hasEventBamCompletes", "description": null, "type": { "kind": "LIST", @@ -76151,7 +103878,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusUpdateFieldInput", + "name": "TempoHasEventBamCompletesUpdateFieldInput", "ofType": null } } @@ -76161,7 +103888,7 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatus", + "name": "hasEventMafCompletes", "description": null, "type": { "kind": "LIST", @@ -76171,7 +103898,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusUpdateFieldInput", + "name": "TempoHasEventMafCompletesUpdateFieldInput", "ofType": null } } @@ -76181,24 +103908,40 @@ "deprecationReason": null }, { - "name": "validationReport", + "name": "hasEventQcCompletes", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesUpdateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationStatus", + "name": "samplesHasTempo", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoUpdateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, @@ -76211,7 +103954,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "TempoWhere", "description": null, "fields": null, "inputFields": [ @@ -76226,7 +103969,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "TempoWhere", "ofType": null } } @@ -76246,7 +103989,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "TempoWhere", "ofType": null } } @@ -76256,11 +103999,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatusAggregate", + "name": "hasEventBamCompletesAggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusAggregateInput", + "name": "TempoHasEventBamCompletesAggregateInput", "ofType": null }, "defaultValue": null, @@ -76268,11 +104011,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatusConnection_ALL", + "name": "hasEventBamCompletesConnection_ALL", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", + "name": "TempoHasEventBamCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76280,11 +104023,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatusConnection_NONE", + "name": "hasEventBamCompletesConnection_NONE", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", + "name": "TempoHasEventBamCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76292,11 +104035,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatusConnection_SINGLE", + "name": "hasEventBamCompletesConnection_SINGLE", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", + "name": "TempoHasEventBamCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76304,11 +104047,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatusConnection_SOME", + "name": "hasEventBamCompletesConnection_SOME", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusRequestMetadataHasStatusConnectionWhere", + "name": "TempoHasEventBamCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76316,11 +104059,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatus_ALL", - "description": "Return Statuses where all of the related RequestMetadata match this filter", + "name": "hasEventBamCompletes_ALL", + "description": "Return Tempos where all of the related BamCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "name": "BamCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76328,11 +104071,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatus_NONE", - "description": "Return Statuses where none of the related RequestMetadata match this filter", + "name": "hasEventBamCompletes_NONE", + "description": "Return Tempos where none of the related BamCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "name": "BamCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76340,11 +104083,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatus_SINGLE", - "description": "Return Statuses where one of the related RequestMetadata match this filter", + "name": "hasEventBamCompletes_SINGLE", + "description": "Return Tempos where one of the related BamCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "name": "BamCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76352,11 +104095,11 @@ "deprecationReason": null }, { - "name": "requestMetadataHasStatus_SOME", - "description": "Return Statuses where some of the related RequestMetadata match this filter", + "name": "hasEventBamCompletes_SOME", + "description": "Return Tempos where some of the related BamCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", + "name": "BamCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76364,11 +104107,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatusAggregate", + "name": "hasEventMafCompletesAggregate", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusAggregateInput", + "name": "TempoHasEventMafCompletesAggregateInput", "ofType": null }, "defaultValue": null, @@ -76376,11 +104119,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatusConnection_ALL", + "name": "hasEventMafCompletesConnection_ALL", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", + "name": "TempoHasEventMafCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76388,11 +104131,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatusConnection_NONE", + "name": "hasEventMafCompletesConnection_NONE", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", + "name": "TempoHasEventMafCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76400,11 +104143,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatusConnection_SINGLE", + "name": "hasEventMafCompletesConnection_SINGLE", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", + "name": "TempoHasEventMafCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76412,11 +104155,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatusConnection_SOME", + "name": "hasEventMafCompletesConnection_SOME", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusSampleMetadataHasStatusConnectionWhere", + "name": "TempoHasEventMafCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76424,11 +104167,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatus_ALL", - "description": "Return Statuses where all of the related SampleMetadata match this filter", + "name": "hasEventMafCompletes_ALL", + "description": "Return Tempos where all of the related MafCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "name": "MafCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76436,11 +104179,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatus_NONE", - "description": "Return Statuses where none of the related SampleMetadata match this filter", + "name": "hasEventMafCompletes_NONE", + "description": "Return Tempos where none of the related MafCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "name": "MafCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76448,11 +104191,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatus_SINGLE", - "description": "Return Statuses where one of the related SampleMetadata match this filter", + "name": "hasEventMafCompletes_SINGLE", + "description": "Return Tempos where one of the related MafCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "name": "MafCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76460,11 +104203,11 @@ "deprecationReason": null }, { - "name": "sampleMetadataHasStatus_SOME", - "description": "Return Statuses where some of the related SampleMetadata match this filter", + "name": "hasEventMafCompletes_SOME", + "description": "Return Tempos where some of the related MafCompletes match this filter", "type": { "kind": "INPUT_OBJECT", - "name": "SampleMetadataWhere", + "name": "MafCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76472,11 +104215,11 @@ "deprecationReason": null }, { - "name": "validationReport", + "name": "hasEventQcCompletesAggregate", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesAggregateInput", "ofType": null }, "defaultValue": null, @@ -76484,11 +104227,11 @@ "deprecationReason": null }, { - "name": "validationReport_CONTAINS", + "name": "hasEventQcCompletesConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76496,11 +104239,11 @@ "deprecationReason": null }, { - "name": "validationReport_ENDS_WITH", + "name": "hasEventQcCompletesConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76508,31 +104251,23 @@ "deprecationReason": null }, { - "name": "validationReport_IN", + "name": "hasEventQcCompletesConnection_SINGLE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationReport_NOT", + "name": "hasEventQcCompletesConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TempoHasEventQcCompletesConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76540,11 +104275,11 @@ "deprecationReason": null }, { - "name": "validationReport_NOT_CONTAINS", - "description": null, + "name": "hasEventQcCompletes_ALL", + "description": "Return Tempos where all of the related QcCompletes match this filter", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76552,11 +104287,11 @@ "deprecationReason": null }, { - "name": "validationReport_NOT_ENDS_WITH", - "description": null, + "name": "hasEventQcCompletes_NONE", + "description": "Return Tempos where none of the related QcCompletes match this filter", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", "ofType": null }, "defaultValue": null, @@ -76564,31 +104299,47 @@ "deprecationReason": null }, { - "name": "validationReport_NOT_IN", + "name": "hasEventQcCompletes_SINGLE", + "description": "Return Tempos where one of the related QcCompletes match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasEventQcCompletes_SOME", + "description": "Return Tempos where some of the related QcCompletes match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "QcCompleteWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasTempoAggregate", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoAggregateInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationReport_NOT_STARTS_WITH", + "name": "samplesHasTempoConnection_ALL", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76596,11 +104347,11 @@ "deprecationReason": null }, { - "name": "validationReport_STARTS_WITH", + "name": "samplesHasTempoConnection_NONE", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76608,11 +104359,11 @@ "deprecationReason": null }, { - "name": "validationStatus", + "name": "samplesHasTempoConnection_SINGLE", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", "ofType": null }, "defaultValue": null, @@ -76620,11 +104371,59 @@ "deprecationReason": null }, { - "name": "validationStatus_NOT", + "name": "samplesHasTempoConnection_SOME", "description": null, "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "TempoSamplesHasTempoConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasTempo_ALL", + "description": "Return Tempos where all of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasTempo_NONE", + "description": "Return Tempos where none of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasTempo_SINGLE", + "description": "Return Tempos where one of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samplesHasTempo_SOME", + "description": "Return Tempos where some of the related Samples match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleWhere", "ofType": null }, "defaultValue": null, @@ -76638,7 +104437,7 @@ }, { "kind": "OBJECT", - "name": "StatusesConnection", + "name": "TemposConnection", "description": null, "fields": [ { @@ -76656,7 +104455,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StatusEdge", + "name": "TempoEdge", "ofType": null } } @@ -76704,46 +104503,95 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, + "kind": "OBJECT", + "name": "UpdateBamCompletesMutationResponse", + "description": null, + "fields": [ + { + "name": "bamCompletes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "BamComplete", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "StringAggregateSelectionNonNullable", + "name": "UpdateCohortCompletesMutationResponse", "description": null, "fields": [ { - "name": "longest", + "name": "cohortCompletes", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CohortComplete", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shortest", + "name": "info", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UpdateInfo", "ofType": null } }, @@ -76758,29 +104606,45 @@ }, { "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", + "name": "UpdateCohortsMutationResponse", "description": null, "fields": [ { - "name": "longest", + "name": "cohorts", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cohort", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shortest", + "name": "info", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateInfo", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -76878,6 +104742,57 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "UpdateMafCompletesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mafCompletes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MafComplete", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "UpdatePatientAliasesMutationResponse", @@ -77031,6 +104946,57 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "UpdateQcCompletesMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcCompletes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "QcComplete", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "UpdateRequestMetadataMutationResponse", @@ -77337,6 +105303,57 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "UpdateTemposMutationResponse", + "description": null, + "fields": [ + { + "name": "info", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UpdateInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tempos", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tempo", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, { "kind": "OBJECT", "name": "__Directive", diff --git a/graphql/operations.graphql b/graphql/operations.graphql index 470479bf..d349f0ac 100644 --- a/graphql/operations.graphql +++ b/graphql/operations.graphql @@ -46,53 +46,19 @@ query PatientsList( } } -query RequestWithSamples( - $options: RequestOptions - $where: RequestWhere - $hasSampleSamplesWhere2: SampleWhere - $hasMetadataSampleMetadataWhere2: SampleMetadataWhere - $hasSampleSamplesConnectionWhere2: RequestHasSampleSamplesConnectionWhere - $hasMetadataSampleMetadataOptions2: SampleMetadataOptions -) { - requests(where: $where, options: $options) { - ...RequestParts - hasSampleSamples(where: $hasSampleSamplesWhere2) { - smileSampleId - sampleCategory - sampleClass - datasource - revisable - hasMetadataSampleMetadata( - where: $hasMetadataSampleMetadataWhere2 - options: $hasMetadataSampleMetadataOptions2 - ) { - ...SampleMetadataParts - } - patientsHasSample { - smilePatientId - patientAliasesIsAlias { - namespace - value - } - } - } - hasSampleSamplesConnection(where: $hasSampleSamplesConnectionWhere2) { - totalCount - } - } -} - query FindSamplesByInputValue( $where: SampleWhere $first: Int - $options: SampleMetadataOptions - $patientAliasesIsAliasWhere2: PatientAliasWhere + $sampleMetadataOptions: SampleMetadataOptions + $bamCompletesOptions: BamCompleteOptions + $mafCompletesOptions: MafCompleteOptions + $qcCompletesOptions: QcCompleteOptions ) { samplesConnection(where: $where, first: $first) { edges { node { ...SampleParts - hasMetadataSampleMetadata(options: $options) { + hasMetadataSampleMetadata(options: $sampleMetadataOptions) { ...SampleMetadataParts hasStatusStatuses { validationReport @@ -110,13 +76,37 @@ query FindSamplesByInputValue( edges { node { smilePatientId - patientAliasesIsAlias(where: $patientAliasesIsAliasWhere2) { + patientAliasesIsAlias { namespace value } } } } + cohortsHasCohortSampleConnection { + edges { + node { + cohortId + } + } + } + hasTempoTempos { + hasEventBamCompletes(options: $bamCompletesOptions) { + date + status + } + hasEventMafCompletes(options: $mafCompletesOptions) { + date + normalPrimaryId + status + } + hasEventQcCompletes(options: $qcCompletesOptions) { + date + reason + result + status + } + } } } } @@ -227,3 +217,31 @@ query GetPatientIdsTriplets($patientIds: [String!]!) { PT_MRN } } + +query CohortsList( + $where: CohortWhere + $options: CohortOptions + $cohortsConnectionWhere2: CohortWhere + $hasCohortCompleteCohortCompletesOptions2: CohortCompleteOptions +) { + cohortsConnection(where: $cohortsConnectionWhere2) { + totalCount + } + cohorts(where: $where, options: $options) { + cohortId + hasCohortCompleteCohortCompletes( + options: $hasCohortCompleteCohortCompletesOptions2 + ) { + type + endUsers + pmUsers + projectTitle + projectSubtitle + status + date + } + hasCohortSampleSamplesConnection { + totalCount + } + } +}