From 38018d2cfba7609ae5f81b98e1508b2f9b29d7e2 Mon Sep 17 00:00:00 2001 From: Quan Nguyen <86090707+qu8n@users.noreply.github.com> Date: Thu, 7 Dec 2023 15:07:20 -0500 Subject: [PATCH] Add 12-245 parts A and C consent status fields to the Patients table (#104) * Modify the PatientsList GraphQL query to return additionalProperties field * Render Consent Status fields from additionalProperties on Patients table * Rename consent status field names to include '12-245' --- frontend/src/generated/graphql.ts | 1024 ++- frontend/src/shared/helpers.tsx | 20 + graphql-server/src/generated/graphql.ts | 1024 ++- graphql.schema.json | 10382 +++++++++++++++++++--- graphql/operations.graphql | 1 + 5 files changed, 10946 insertions(+), 1505 deletions(-) diff --git a/frontend/src/generated/graphql.ts b/frontend/src/generated/graphql.ts index 6893f581..2dc7101a 100644 --- a/frontend/src/generated/graphql.ts +++ b/frontend/src/generated/graphql.ts @@ -352,7 +352,7 @@ export type PatientAlias = { isAliasPatientsAggregate?: Maybe; isAliasPatientsConnection: PatientAliasIsAliasPatientsConnection; namespace: Scalars["String"]; - value?: Maybe; + value: Scalars["String"]; }; export type PatientAliasIsAliasPatientsArgs = { @@ -378,7 +378,7 @@ export type PatientAliasAggregateSelection = { __typename?: "PatientAliasAggregateSelection"; count: Scalars["Int"]; namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNullable; + value: StringAggregateSelectionNonNullable; }; export type PatientAliasConnectInput = { @@ -394,7 +394,7 @@ export type PatientAliasConnectWhere = { export type PatientAliasCreateInput = { isAliasPatients?: InputMaybe; namespace: Scalars["String"]; - value?: InputMaybe; + value: Scalars["String"]; }; export type PatientAliasDeleteInput = { @@ -581,11 +581,11 @@ export type PatientAliasWhere = { value?: InputMaybe; value_CONTAINS?: InputMaybe; value_ENDS_WITH?: InputMaybe; - value_IN?: InputMaybe>>; + value_IN?: InputMaybe>; value_NOT?: InputMaybe; value_NOT_CONTAINS?: InputMaybe; value_NOT_ENDS_WITH?: InputMaybe; - value_NOT_IN?: InputMaybe>>; + value_NOT_IN?: InputMaybe>; value_NOT_STARTS_WITH?: InputMaybe; value_STARTS_WITH?: InputMaybe; }; @@ -811,7 +811,7 @@ export type PatientPatientAliasPatientAliasesIsAliasAggregationSelection = { export type PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection = { __typename?: "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection"; namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNullable; + value: StringAggregateSelectionNonNullable; }; export type PatientPatientAliasesIsAliasAggregateInput = { @@ -1826,6 +1826,9 @@ export type Request = { dataAnalystEmail: Scalars["String"]; dataAnalystName: Scalars["String"]; genePanel: Scalars["String"]; + hasMetadataRequestMetadata: Array; + hasMetadataRequestMetadataAggregate?: Maybe; + hasMetadataRequestMetadataConnection: RequestHasMetadataRequestMetadataConnection; hasSampleSamples: Array; hasSampleSamplesAggregate?: Maybe; hasSampleSamplesConnection: RequestHasSampleSamplesConnection; @@ -1840,18 +1843,36 @@ export type Request = { namespace: Scalars["String"]; otherContactEmails: Scalars["String"]; piEmail: Scalars["String"]; - pooledNormals: Array>; + pooledNormals?: Maybe>>; projectManagerName: Scalars["String"]; projectsHasRequest: Array; projectsHasRequestAggregate?: Maybe; projectsHasRequestConnection: RequestProjectsHasRequestConnection; qcAccessEmails: Scalars["String"]; requestJson: Scalars["String"]; - revisable?: Maybe; smileRequestId: Scalars["String"]; strand?: Maybe; }; +export type RequestHasMetadataRequestMetadataArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + export type RequestHasSampleSamplesArgs = { directed?: InputMaybe; options?: InputMaybe; @@ -1915,6 +1936,9 @@ export type RequestAggregateSelection = { }; export type RequestConnectInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe< Array >; @@ -1933,6 +1957,7 @@ export type RequestCreateInput = { dataAnalystEmail: Scalars["String"]; dataAnalystName: Scalars["String"]; genePanel: Scalars["String"]; + hasMetadataRequestMetadata?: InputMaybe; hasSampleSamples?: InputMaybe; igoProjectId: Scalars["String"]; igoRequestId: Scalars["String"]; @@ -1945,17 +1970,19 @@ export type RequestCreateInput = { namespace: Scalars["String"]; otherContactEmails: Scalars["String"]; piEmail: Scalars["String"]; - pooledNormals: Array>; + pooledNormals?: InputMaybe>>; projectManagerName: Scalars["String"]; projectsHasRequest?: InputMaybe; qcAccessEmails: Scalars["String"]; requestJson: Scalars["String"]; - revisable?: InputMaybe; smileRequestId: Scalars["String"]; strand?: InputMaybe; }; export type RequestDeleteInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe>; projectsHasRequest?: InputMaybe< Array @@ -1963,6 +1990,9 @@ export type RequestDeleteInput = { }; export type RequestDisconnectInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe< Array >; @@ -1977,6 +2007,153 @@ export type RequestEdge = { node: Request; }; +export type RequestHasMetadataRequestMetadataAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnection = { + __typename?: "RequestHasMetadataRequestMetadataConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type RequestHasMetadataRequestMetadataConnectionSort = { + node?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataCreateFieldInput = { + node: RequestMetadataCreateInput; +}; + +export type RequestHasMetadataRequestMetadataDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; +}; + +export type RequestHasMetadataRequestMetadataNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + igoRequestId_AVERAGE_EQUAL?: InputMaybe; + igoRequestId_AVERAGE_GT?: InputMaybe; + igoRequestId_AVERAGE_GTE?: InputMaybe; + igoRequestId_AVERAGE_LT?: InputMaybe; + igoRequestId_AVERAGE_LTE?: InputMaybe; + igoRequestId_EQUAL?: InputMaybe; + igoRequestId_GT?: InputMaybe; + igoRequestId_GTE?: InputMaybe; + igoRequestId_LONGEST_EQUAL?: InputMaybe; + igoRequestId_LONGEST_GT?: InputMaybe; + igoRequestId_LONGEST_GTE?: InputMaybe; + igoRequestId_LONGEST_LT?: InputMaybe; + igoRequestId_LONGEST_LTE?: InputMaybe; + igoRequestId_LT?: InputMaybe; + igoRequestId_LTE?: InputMaybe; + igoRequestId_SHORTEST_EQUAL?: InputMaybe; + igoRequestId_SHORTEST_GT?: InputMaybe; + igoRequestId_SHORTEST_GTE?: InputMaybe; + igoRequestId_SHORTEST_LT?: InputMaybe; + igoRequestId_SHORTEST_LTE?: InputMaybe; + importDate_AVERAGE_EQUAL?: InputMaybe; + importDate_AVERAGE_GT?: InputMaybe; + importDate_AVERAGE_GTE?: InputMaybe; + importDate_AVERAGE_LT?: InputMaybe; + importDate_AVERAGE_LTE?: InputMaybe; + importDate_EQUAL?: InputMaybe; + importDate_GT?: InputMaybe; + importDate_GTE?: InputMaybe; + importDate_LONGEST_EQUAL?: InputMaybe; + importDate_LONGEST_GT?: InputMaybe; + importDate_LONGEST_GTE?: InputMaybe; + importDate_LONGEST_LT?: InputMaybe; + importDate_LONGEST_LTE?: InputMaybe; + importDate_LT?: InputMaybe; + importDate_LTE?: InputMaybe; + importDate_SHORTEST_EQUAL?: InputMaybe; + importDate_SHORTEST_GT?: InputMaybe; + importDate_SHORTEST_GTE?: InputMaybe; + importDate_SHORTEST_LT?: InputMaybe; + importDate_SHORTEST_LTE?: InputMaybe; + requestMetadataJson_AVERAGE_EQUAL?: InputMaybe; + requestMetadataJson_AVERAGE_GT?: InputMaybe; + requestMetadataJson_AVERAGE_GTE?: InputMaybe; + requestMetadataJson_AVERAGE_LT?: InputMaybe; + requestMetadataJson_AVERAGE_LTE?: InputMaybe; + requestMetadataJson_EQUAL?: InputMaybe; + requestMetadataJson_GT?: InputMaybe; + requestMetadataJson_GTE?: InputMaybe; + requestMetadataJson_LONGEST_EQUAL?: InputMaybe; + requestMetadataJson_LONGEST_GT?: InputMaybe; + requestMetadataJson_LONGEST_GTE?: InputMaybe; + requestMetadataJson_LONGEST_LT?: InputMaybe; + requestMetadataJson_LONGEST_LTE?: InputMaybe; + requestMetadataJson_LT?: InputMaybe; + requestMetadataJson_LTE?: InputMaybe; + requestMetadataJson_SHORTEST_EQUAL?: InputMaybe; + requestMetadataJson_SHORTEST_GT?: InputMaybe; + requestMetadataJson_SHORTEST_GTE?: InputMaybe; + requestMetadataJson_SHORTEST_LT?: InputMaybe; + requestMetadataJson_SHORTEST_LTE?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataRelationship = { + __typename?: "RequestHasMetadataRequestMetadataRelationship"; + cursor: Scalars["String"]; + node: RequestMetadata; +}; + +export type RequestHasMetadataRequestMetadataUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + export type RequestHasSampleSamplesAggregateInput = { AND?: InputMaybe>; OR?: InputMaybe>; @@ -2142,6 +2319,9 @@ export type RequestMetadata = { igoRequestId: Scalars["String"]; importDate: Scalars["String"]; requestMetadataJson: Scalars["String"]; + requestsHasMetadata: Array; + requestsHasMetadataAggregate?: Maybe; + requestsHasMetadataConnection: RequestMetadataRequestsHasMetadataConnection; }; export type RequestMetadataHasStatusStatusesArgs = { @@ -2163,6 +2343,25 @@ export type RequestMetadataHasStatusStatusesConnectionArgs = { where?: InputMaybe; }; +export type RequestMetadataRequestsHasMetadataArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + export type RequestMetadataAggregateSelection = { __typename?: "RequestMetadataAggregateSelection"; count: Scalars["Int"]; @@ -2175,6 +2374,9 @@ export type RequestMetadataConnectInput = { hasStatusStatuses?: InputMaybe< Array >; + requestsHasMetadata?: InputMaybe< + Array + >; }; export type RequestMetadataConnectWhere = { @@ -2193,144 +2395,656 @@ export type RequestMetadataCreateInput = { igoRequestId: Scalars["String"]; importDate: Scalars["String"]; requestMetadataJson: Scalars["String"]; + requestsHasMetadata?: InputMaybe; }; export type RequestMetadataDeleteInput = { hasStatusStatuses?: InputMaybe< Array >; + requestsHasMetadata?: InputMaybe< + Array + >; }; export type RequestMetadataDisconnectInput = { hasStatusStatuses?: InputMaybe< Array >; + requestsHasMetadata?: InputMaybe< + Array + >; +}; + +export type RequestMetadataEdge = { + __typename?: "RequestMetadataEdge"; + cursor: Scalars["String"]; + node: RequestMetadata; +}; + +export type RequestMetadataHasStatusStatusesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesConnection = { + __typename?: "RequestMetadataHasStatusStatusesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type RequestMetadataHasStatusStatusesConnectionSort = { + node?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesCreateFieldInput = { + node: StatusCreateInput; +}; + +export type RequestMetadataHasStatusStatusesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; +}; + +export type RequestMetadataHasStatusStatusesNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + validationReport_AVERAGE_EQUAL?: InputMaybe; + validationReport_AVERAGE_GT?: InputMaybe; + validationReport_AVERAGE_GTE?: InputMaybe; + validationReport_AVERAGE_LT?: InputMaybe; + validationReport_AVERAGE_LTE?: InputMaybe; + validationReport_EQUAL?: InputMaybe; + validationReport_GT?: InputMaybe; + validationReport_GTE?: InputMaybe; + validationReport_LONGEST_EQUAL?: InputMaybe; + validationReport_LONGEST_GT?: InputMaybe; + validationReport_LONGEST_GTE?: InputMaybe; + validationReport_LONGEST_LT?: InputMaybe; + validationReport_LONGEST_LTE?: InputMaybe; + validationReport_LT?: InputMaybe; + validationReport_LTE?: InputMaybe; + validationReport_SHORTEST_EQUAL?: InputMaybe; + validationReport_SHORTEST_GT?: InputMaybe; + validationReport_SHORTEST_GTE?: InputMaybe; + validationReport_SHORTEST_LT?: InputMaybe; + validationReport_SHORTEST_LTE?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesRelationship = { + __typename?: "RequestMetadataHasStatusStatusesRelationship"; + cursor: Scalars["String"]; + node: Status; +}; + +export type RequestMetadataHasStatusStatusesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** 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. */ + sort?: InputMaybe>; +}; + +export type RequestMetadataRelationInput = { + hasStatusStatuses?: InputMaybe< + Array + >; + requestsHasMetadata?: InputMaybe< + Array + >; +}; + +export type RequestMetadataRequestRequestsHasMetadataAggregationSelection = { + __typename?: "RequestMetadataRequestRequestsHasMetadataAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection = { + __typename?: "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection"; + dataAccessEmails: StringAggregateSelectionNonNullable; + dataAnalystEmail: StringAggregateSelectionNonNullable; + dataAnalystName: StringAggregateSelectionNonNullable; + genePanel: StringAggregateSelectionNonNullable; + igoProjectId: StringAggregateSelectionNonNullable; + igoRequestId: StringAggregateSelectionNonNullable; + investigatorEmail: StringAggregateSelectionNonNullable; + investigatorName: StringAggregateSelectionNonNullable; + labHeadEmail: StringAggregateSelectionNonNullable; + labHeadName: StringAggregateSelectionNonNullable; + libraryType: StringAggregateSelectionNullable; + namespace: StringAggregateSelectionNonNullable; + otherContactEmails: StringAggregateSelectionNonNullable; + piEmail: StringAggregateSelectionNonNullable; + projectManagerName: StringAggregateSelectionNonNullable; + qcAccessEmails: StringAggregateSelectionNonNullable; + requestJson: StringAggregateSelectionNonNullable; + smileRequestId: StringAggregateSelectionNonNullable; + strand: StringAggregateSelectionNullable; +}; + +export type RequestMetadataRequestsHasMetadataAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnection = { + __typename?: "RequestMetadataRequestsHasMetadataConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type RequestMetadataRequestsHasMetadataConnectionSort = { + node?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataCreateFieldInput = { + node: RequestCreateInput; +}; + +export type RequestMetadataRequestsHasMetadataDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; +}; + +export type RequestMetadataRequestsHasMetadataNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + 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; + genePanel_AVERAGE_EQUAL?: InputMaybe; + genePanel_AVERAGE_GT?: InputMaybe; + genePanel_AVERAGE_GTE?: InputMaybe; + genePanel_AVERAGE_LT?: InputMaybe; + genePanel_AVERAGE_LTE?: InputMaybe; + genePanel_EQUAL?: InputMaybe; + genePanel_GT?: InputMaybe; + genePanel_GTE?: InputMaybe; + genePanel_LONGEST_EQUAL?: InputMaybe; + genePanel_LONGEST_GT?: InputMaybe; + genePanel_LONGEST_GTE?: InputMaybe; + genePanel_LONGEST_LT?: InputMaybe; + genePanel_LONGEST_LTE?: InputMaybe; + genePanel_LT?: InputMaybe; + genePanel_LTE?: InputMaybe; + genePanel_SHORTEST_EQUAL?: InputMaybe; + genePanel_SHORTEST_GT?: InputMaybe; + genePanel_SHORTEST_GTE?: InputMaybe; + genePanel_SHORTEST_LT?: InputMaybe; + genePanel_SHORTEST_LTE?: InputMaybe; + igoProjectId_AVERAGE_EQUAL?: InputMaybe; + igoProjectId_AVERAGE_GT?: InputMaybe; + igoProjectId_AVERAGE_GTE?: InputMaybe; + igoProjectId_AVERAGE_LT?: InputMaybe; + igoProjectId_AVERAGE_LTE?: InputMaybe; + igoProjectId_EQUAL?: InputMaybe; + igoProjectId_GT?: InputMaybe; + igoProjectId_GTE?: InputMaybe; + igoProjectId_LONGEST_EQUAL?: InputMaybe; + igoProjectId_LONGEST_GT?: InputMaybe; + igoProjectId_LONGEST_GTE?: InputMaybe; + igoProjectId_LONGEST_LT?: InputMaybe; + igoProjectId_LONGEST_LTE?: InputMaybe; + igoProjectId_LT?: InputMaybe; + igoProjectId_LTE?: InputMaybe; + igoProjectId_SHORTEST_EQUAL?: InputMaybe; + igoProjectId_SHORTEST_GT?: InputMaybe; + igoProjectId_SHORTEST_GTE?: InputMaybe; + igoProjectId_SHORTEST_LT?: InputMaybe; + igoProjectId_SHORTEST_LTE?: InputMaybe; + igoRequestId_AVERAGE_EQUAL?: InputMaybe; + igoRequestId_AVERAGE_GT?: InputMaybe; + igoRequestId_AVERAGE_GTE?: InputMaybe; + igoRequestId_AVERAGE_LT?: InputMaybe; + igoRequestId_AVERAGE_LTE?: InputMaybe; + igoRequestId_EQUAL?: InputMaybe; + igoRequestId_GT?: InputMaybe; + igoRequestId_GTE?: InputMaybe; + igoRequestId_LONGEST_EQUAL?: InputMaybe; + igoRequestId_LONGEST_GT?: InputMaybe; + igoRequestId_LONGEST_GTE?: InputMaybe; + igoRequestId_LONGEST_LT?: InputMaybe; + igoRequestId_LONGEST_LTE?: InputMaybe; + igoRequestId_LT?: InputMaybe; + igoRequestId_LTE?: InputMaybe; + igoRequestId_SHORTEST_EQUAL?: InputMaybe; + igoRequestId_SHORTEST_GT?: InputMaybe; + igoRequestId_SHORTEST_GTE?: InputMaybe; + igoRequestId_SHORTEST_LT?: InputMaybe; + igoRequestId_SHORTEST_LTE?: InputMaybe; + investigatorEmail_AVERAGE_EQUAL?: InputMaybe; + investigatorEmail_AVERAGE_GT?: InputMaybe; + investigatorEmail_AVERAGE_GTE?: InputMaybe; + investigatorEmail_AVERAGE_LT?: InputMaybe; + investigatorEmail_AVERAGE_LTE?: InputMaybe; + investigatorEmail_EQUAL?: InputMaybe; + investigatorEmail_GT?: InputMaybe; + investigatorEmail_GTE?: InputMaybe; + investigatorEmail_LONGEST_EQUAL?: InputMaybe; + investigatorEmail_LONGEST_GT?: InputMaybe; + investigatorEmail_LONGEST_GTE?: InputMaybe; + investigatorEmail_LONGEST_LT?: InputMaybe; + investigatorEmail_LONGEST_LTE?: InputMaybe; + investigatorEmail_LT?: InputMaybe; + investigatorEmail_LTE?: InputMaybe; + investigatorEmail_SHORTEST_EQUAL?: InputMaybe; + investigatorEmail_SHORTEST_GT?: InputMaybe; + investigatorEmail_SHORTEST_GTE?: InputMaybe; + investigatorEmail_SHORTEST_LT?: InputMaybe; + investigatorEmail_SHORTEST_LTE?: InputMaybe; + investigatorName_AVERAGE_EQUAL?: InputMaybe; + investigatorName_AVERAGE_GT?: InputMaybe; + investigatorName_AVERAGE_GTE?: InputMaybe; + investigatorName_AVERAGE_LT?: InputMaybe; + investigatorName_AVERAGE_LTE?: InputMaybe; + investigatorName_EQUAL?: InputMaybe; + investigatorName_GT?: InputMaybe; + investigatorName_GTE?: InputMaybe; + investigatorName_LONGEST_EQUAL?: InputMaybe; + investigatorName_LONGEST_GT?: InputMaybe; + investigatorName_LONGEST_GTE?: InputMaybe; + investigatorName_LONGEST_LT?: InputMaybe; + investigatorName_LONGEST_LTE?: InputMaybe; + investigatorName_LT?: InputMaybe; + investigatorName_LTE?: InputMaybe; + investigatorName_SHORTEST_EQUAL?: InputMaybe; + investigatorName_SHORTEST_GT?: InputMaybe; + investigatorName_SHORTEST_GTE?: InputMaybe; + investigatorName_SHORTEST_LT?: InputMaybe; + investigatorName_SHORTEST_LTE?: InputMaybe; + labHeadEmail_AVERAGE_EQUAL?: InputMaybe; + labHeadEmail_AVERAGE_GT?: InputMaybe; + labHeadEmail_AVERAGE_GTE?: InputMaybe; + labHeadEmail_AVERAGE_LT?: InputMaybe; + labHeadEmail_AVERAGE_LTE?: InputMaybe; + labHeadEmail_EQUAL?: InputMaybe; + labHeadEmail_GT?: InputMaybe; + labHeadEmail_GTE?: InputMaybe; + labHeadEmail_LONGEST_EQUAL?: InputMaybe; + labHeadEmail_LONGEST_GT?: InputMaybe; + labHeadEmail_LONGEST_GTE?: InputMaybe; + labHeadEmail_LONGEST_LT?: InputMaybe; + labHeadEmail_LONGEST_LTE?: InputMaybe; + labHeadEmail_LT?: InputMaybe; + labHeadEmail_LTE?: InputMaybe; + labHeadEmail_SHORTEST_EQUAL?: InputMaybe; + labHeadEmail_SHORTEST_GT?: InputMaybe; + labHeadEmail_SHORTEST_GTE?: InputMaybe; + labHeadEmail_SHORTEST_LT?: InputMaybe; + labHeadEmail_SHORTEST_LTE?: InputMaybe; + labHeadName_AVERAGE_EQUAL?: InputMaybe; + labHeadName_AVERAGE_GT?: InputMaybe; + labHeadName_AVERAGE_GTE?: InputMaybe; + labHeadName_AVERAGE_LT?: InputMaybe; + labHeadName_AVERAGE_LTE?: InputMaybe; + labHeadName_EQUAL?: InputMaybe; + labHeadName_GT?: InputMaybe; + labHeadName_GTE?: InputMaybe; + labHeadName_LONGEST_EQUAL?: InputMaybe; + labHeadName_LONGEST_GT?: InputMaybe; + labHeadName_LONGEST_GTE?: InputMaybe; + labHeadName_LONGEST_LT?: InputMaybe; + labHeadName_LONGEST_LTE?: InputMaybe; + labHeadName_LT?: InputMaybe; + labHeadName_LTE?: InputMaybe; + labHeadName_SHORTEST_EQUAL?: InputMaybe; + labHeadName_SHORTEST_GT?: InputMaybe; + labHeadName_SHORTEST_GTE?: InputMaybe; + labHeadName_SHORTEST_LT?: InputMaybe; + labHeadName_SHORTEST_LTE?: InputMaybe; + libraryType_AVERAGE_EQUAL?: InputMaybe; + libraryType_AVERAGE_GT?: InputMaybe; + libraryType_AVERAGE_GTE?: InputMaybe; + libraryType_AVERAGE_LT?: InputMaybe; + libraryType_AVERAGE_LTE?: InputMaybe; + libraryType_EQUAL?: InputMaybe; + libraryType_GT?: InputMaybe; + libraryType_GTE?: InputMaybe; + libraryType_LONGEST_EQUAL?: InputMaybe; + libraryType_LONGEST_GT?: InputMaybe; + libraryType_LONGEST_GTE?: InputMaybe; + libraryType_LONGEST_LT?: InputMaybe; + libraryType_LONGEST_LTE?: InputMaybe; + libraryType_LT?: InputMaybe; + libraryType_LTE?: InputMaybe; + libraryType_SHORTEST_EQUAL?: InputMaybe; + libraryType_SHORTEST_GT?: InputMaybe; + libraryType_SHORTEST_GTE?: InputMaybe; + libraryType_SHORTEST_LT?: InputMaybe; + libraryType_SHORTEST_LTE?: 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; + otherContactEmails_AVERAGE_EQUAL?: InputMaybe; + otherContactEmails_AVERAGE_GT?: InputMaybe; + otherContactEmails_AVERAGE_GTE?: InputMaybe; + otherContactEmails_AVERAGE_LT?: InputMaybe; + otherContactEmails_AVERAGE_LTE?: InputMaybe; + otherContactEmails_EQUAL?: InputMaybe; + otherContactEmails_GT?: InputMaybe; + otherContactEmails_GTE?: InputMaybe; + otherContactEmails_LONGEST_EQUAL?: InputMaybe; + otherContactEmails_LONGEST_GT?: InputMaybe; + otherContactEmails_LONGEST_GTE?: InputMaybe; + otherContactEmails_LONGEST_LT?: InputMaybe; + otherContactEmails_LONGEST_LTE?: InputMaybe; + otherContactEmails_LT?: InputMaybe; + otherContactEmails_LTE?: InputMaybe; + otherContactEmails_SHORTEST_EQUAL?: InputMaybe; + otherContactEmails_SHORTEST_GT?: InputMaybe; + otherContactEmails_SHORTEST_GTE?: InputMaybe; + otherContactEmails_SHORTEST_LT?: InputMaybe; + otherContactEmails_SHORTEST_LTE?: InputMaybe; + piEmail_AVERAGE_EQUAL?: InputMaybe; + piEmail_AVERAGE_GT?: InputMaybe; + piEmail_AVERAGE_GTE?: InputMaybe; + piEmail_AVERAGE_LT?: InputMaybe; + piEmail_AVERAGE_LTE?: InputMaybe; + piEmail_EQUAL?: InputMaybe; + piEmail_GT?: InputMaybe; + piEmail_GTE?: InputMaybe; + piEmail_LONGEST_EQUAL?: InputMaybe; + piEmail_LONGEST_GT?: InputMaybe; + piEmail_LONGEST_GTE?: InputMaybe; + piEmail_LONGEST_LT?: InputMaybe; + piEmail_LONGEST_LTE?: InputMaybe; + piEmail_LT?: InputMaybe; + piEmail_LTE?: InputMaybe; + piEmail_SHORTEST_EQUAL?: InputMaybe; + piEmail_SHORTEST_GT?: InputMaybe; + piEmail_SHORTEST_GTE?: InputMaybe; + piEmail_SHORTEST_LT?: InputMaybe; + piEmail_SHORTEST_LTE?: InputMaybe; + projectManagerName_AVERAGE_EQUAL?: InputMaybe; + projectManagerName_AVERAGE_GT?: InputMaybe; + projectManagerName_AVERAGE_GTE?: InputMaybe; + projectManagerName_AVERAGE_LT?: InputMaybe; + projectManagerName_AVERAGE_LTE?: InputMaybe; + projectManagerName_EQUAL?: InputMaybe; + projectManagerName_GT?: InputMaybe; + projectManagerName_GTE?: InputMaybe; + projectManagerName_LONGEST_EQUAL?: InputMaybe; + projectManagerName_LONGEST_GT?: InputMaybe; + projectManagerName_LONGEST_GTE?: InputMaybe; + projectManagerName_LONGEST_LT?: InputMaybe; + projectManagerName_LONGEST_LTE?: InputMaybe; + projectManagerName_LT?: InputMaybe; + projectManagerName_LTE?: InputMaybe; + projectManagerName_SHORTEST_EQUAL?: InputMaybe; + projectManagerName_SHORTEST_GT?: InputMaybe; + projectManagerName_SHORTEST_GTE?: InputMaybe; + projectManagerName_SHORTEST_LT?: InputMaybe; + projectManagerName_SHORTEST_LTE?: InputMaybe; + qcAccessEmails_AVERAGE_EQUAL?: InputMaybe; + qcAccessEmails_AVERAGE_GT?: InputMaybe; + qcAccessEmails_AVERAGE_GTE?: InputMaybe; + qcAccessEmails_AVERAGE_LT?: InputMaybe; + qcAccessEmails_AVERAGE_LTE?: InputMaybe; + qcAccessEmails_EQUAL?: InputMaybe; + qcAccessEmails_GT?: InputMaybe; + qcAccessEmails_GTE?: InputMaybe; + qcAccessEmails_LONGEST_EQUAL?: InputMaybe; + qcAccessEmails_LONGEST_GT?: InputMaybe; + qcAccessEmails_LONGEST_GTE?: InputMaybe; + qcAccessEmails_LONGEST_LT?: InputMaybe; + qcAccessEmails_LONGEST_LTE?: InputMaybe; + qcAccessEmails_LT?: InputMaybe; + qcAccessEmails_LTE?: InputMaybe; + qcAccessEmails_SHORTEST_EQUAL?: InputMaybe; + qcAccessEmails_SHORTEST_GT?: InputMaybe; + qcAccessEmails_SHORTEST_GTE?: InputMaybe; + qcAccessEmails_SHORTEST_LT?: InputMaybe; + qcAccessEmails_SHORTEST_LTE?: InputMaybe; + requestJson_AVERAGE_EQUAL?: InputMaybe; + requestJson_AVERAGE_GT?: InputMaybe; + requestJson_AVERAGE_GTE?: InputMaybe; + requestJson_AVERAGE_LT?: InputMaybe; + requestJson_AVERAGE_LTE?: InputMaybe; + requestJson_EQUAL?: InputMaybe; + requestJson_GT?: InputMaybe; + requestJson_GTE?: InputMaybe; + requestJson_LONGEST_EQUAL?: InputMaybe; + requestJson_LONGEST_GT?: InputMaybe; + requestJson_LONGEST_GTE?: InputMaybe; + requestJson_LONGEST_LT?: InputMaybe; + requestJson_LONGEST_LTE?: InputMaybe; + requestJson_LT?: InputMaybe; + requestJson_LTE?: InputMaybe; + requestJson_SHORTEST_EQUAL?: InputMaybe; + requestJson_SHORTEST_GT?: InputMaybe; + requestJson_SHORTEST_GTE?: InputMaybe; + requestJson_SHORTEST_LT?: InputMaybe; + requestJson_SHORTEST_LTE?: InputMaybe; + smileRequestId_AVERAGE_EQUAL?: InputMaybe; + smileRequestId_AVERAGE_GT?: InputMaybe; + smileRequestId_AVERAGE_GTE?: InputMaybe; + smileRequestId_AVERAGE_LT?: InputMaybe; + smileRequestId_AVERAGE_LTE?: InputMaybe; + smileRequestId_EQUAL?: InputMaybe; + smileRequestId_GT?: InputMaybe; + smileRequestId_GTE?: InputMaybe; + smileRequestId_LONGEST_EQUAL?: InputMaybe; + smileRequestId_LONGEST_GT?: InputMaybe; + smileRequestId_LONGEST_GTE?: InputMaybe; + smileRequestId_LONGEST_LT?: InputMaybe; + smileRequestId_LONGEST_LTE?: InputMaybe; + smileRequestId_LT?: InputMaybe; + smileRequestId_LTE?: InputMaybe; + smileRequestId_SHORTEST_EQUAL?: InputMaybe; + smileRequestId_SHORTEST_GT?: InputMaybe; + smileRequestId_SHORTEST_GTE?: InputMaybe; + smileRequestId_SHORTEST_LT?: InputMaybe; + smileRequestId_SHORTEST_LTE?: InputMaybe; + strand_AVERAGE_EQUAL?: InputMaybe; + strand_AVERAGE_GT?: InputMaybe; + strand_AVERAGE_GTE?: InputMaybe; + strand_AVERAGE_LT?: InputMaybe; + strand_AVERAGE_LTE?: InputMaybe; + strand_EQUAL?: InputMaybe; + strand_GT?: InputMaybe; + strand_GTE?: InputMaybe; + strand_LONGEST_EQUAL?: InputMaybe; + strand_LONGEST_GT?: InputMaybe; + strand_LONGEST_GTE?: InputMaybe; + strand_LONGEST_LT?: InputMaybe; + strand_LONGEST_LTE?: InputMaybe; + strand_LT?: InputMaybe; + strand_LTE?: InputMaybe; + strand_SHORTEST_EQUAL?: InputMaybe; + strand_SHORTEST_GT?: InputMaybe; + strand_SHORTEST_GTE?: InputMaybe; + strand_SHORTEST_LT?: InputMaybe; + strand_SHORTEST_LTE?: InputMaybe; }; -export type RequestMetadataEdge = { - __typename?: "RequestMetadataEdge"; +export type RequestMetadataRequestsHasMetadataRelationship = { + __typename?: "RequestMetadataRequestsHasMetadataRelationship"; cursor: Scalars["String"]; - node: RequestMetadata; -}; - -export type RequestMetadataHasStatusStatusesAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - count?: InputMaybe; - count_GT?: InputMaybe; - count_GTE?: InputMaybe; - count_LT?: InputMaybe; - count_LTE?: InputMaybe; - node?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesConnection = { - __typename?: "RequestMetadataHasStatusStatusesConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; -}; - -export type RequestMetadataHasStatusStatusesConnectionSort = { - node?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesCreateFieldInput = { - node: StatusCreateInput; -}; - -export type RequestMetadataHasStatusStatusesDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; + node: Request; }; -export type RequestMetadataHasStatusStatusesDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type RequestMetadataRequestsHasMetadataUpdateConnectionInput = { + node?: InputMaybe; }; -export type RequestMetadataHasStatusStatusesFieldInput = { +export type RequestMetadataRequestsHasMetadataUpdateFieldInput = { connect?: InputMaybe< - Array + Array >; - create?: InputMaybe>; -}; - -export type RequestMetadataHasStatusStatusesNodeAggregationWhereInput = { - AND?: InputMaybe< - Array - >; - OR?: InputMaybe< - Array + create?: InputMaybe< + Array >; - validationReport_AVERAGE_EQUAL?: InputMaybe; - validationReport_AVERAGE_GT?: InputMaybe; - validationReport_AVERAGE_GTE?: InputMaybe; - validationReport_AVERAGE_LT?: InputMaybe; - validationReport_AVERAGE_LTE?: InputMaybe; - validationReport_EQUAL?: InputMaybe; - validationReport_GT?: InputMaybe; - validationReport_GTE?: InputMaybe; - validationReport_LONGEST_EQUAL?: InputMaybe; - validationReport_LONGEST_GT?: InputMaybe; - validationReport_LONGEST_GTE?: InputMaybe; - validationReport_LONGEST_LT?: InputMaybe; - validationReport_LONGEST_LTE?: InputMaybe; - validationReport_LT?: InputMaybe; - validationReport_LTE?: InputMaybe; - validationReport_SHORTEST_EQUAL?: InputMaybe; - validationReport_SHORTEST_GT?: InputMaybe; - validationReport_SHORTEST_GTE?: InputMaybe; - validationReport_SHORTEST_LT?: InputMaybe; - validationReport_SHORTEST_LTE?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesRelationship = { - __typename?: "RequestMetadataHasStatusStatusesRelationship"; - cursor: Scalars["String"]; - node: Status; -}; - -export type RequestMetadataHasStatusStatusesUpdateConnectionInput = { - node?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesUpdateFieldInput = { - connect?: InputMaybe< - Array + delete?: InputMaybe< + Array >; - create?: InputMaybe>; - delete?: InputMaybe>; disconnect?: InputMaybe< - Array - >; - update?: InputMaybe; - where?: InputMaybe; -}; - -export type RequestMetadataOptions = { - limit?: InputMaybe; - offset?: InputMaybe; - /** 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. */ - sort?: InputMaybe>; -}; - -export type RequestMetadataRelationInput = { - hasStatusStatuses?: InputMaybe< - Array + Array >; + update?: InputMaybe; + where?: InputMaybe; }; /** Fields to sort RequestMetadata by. The order in which sorts are applied is not guaranteed when specifying many fields in one RequestMetadataSort object. */ @@ -2358,6 +3072,9 @@ export type RequestMetadataUpdateInput = { igoRequestId?: InputMaybe; importDate?: InputMaybe; requestMetadataJson?: InputMaybe; + requestsHasMetadata?: InputMaybe< + Array + >; }; export type RequestMetadataWhere = { @@ -2406,6 +3123,19 @@ export type RequestMetadataWhere = { requestMetadataJson_NOT_IN?: InputMaybe>; requestMetadataJson_NOT_STARTS_WITH?: InputMaybe; requestMetadataJson_STARTS_WITH?: InputMaybe; + requestsHasMetadataAggregate?: InputMaybe; + requestsHasMetadataConnection_ALL?: InputMaybe; + requestsHasMetadataConnection_NONE?: InputMaybe; + requestsHasMetadataConnection_SINGLE?: InputMaybe; + requestsHasMetadataConnection_SOME?: InputMaybe; + /** Return RequestMetadata where all of the related Requests match this filter */ + requestsHasMetadata_ALL?: InputMaybe; + /** Return RequestMetadata where none of the related Requests match this filter */ + requestsHasMetadata_NONE?: InputMaybe; + /** Return RequestMetadata where one of the related Requests match this filter */ + requestsHasMetadata_SINGLE?: InputMaybe; + /** Return RequestMetadata where some of the related Requests match this filter */ + requestsHasMetadata_SOME?: InputMaybe; }; export type RequestOptions = { @@ -2545,12 +3275,30 @@ export type RequestProjectsHasRequestUpdateFieldInput = { }; export type RequestRelationInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe>; projectsHasRequest?: InputMaybe< Array >; }; +export type RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection = + { + __typename?: "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; + }; + +export type RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection = + { + __typename?: "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection"; + igoRequestId: StringAggregateSelectionNonNullable; + importDate: StringAggregateSelectionNonNullable; + requestMetadataJson: StringAggregateSelectionNonNullable; + }; + export type RequestSampleHasSampleSamplesAggregationSelection = { __typename?: "RequestSampleHasSampleSamplesAggregationSelection"; count: Scalars["Int"]; @@ -2586,7 +3334,6 @@ export type RequestSort = { projectManagerName?: InputMaybe; qcAccessEmails?: InputMaybe; requestJson?: InputMaybe; - revisable?: InputMaybe; smileRequestId?: InputMaybe; strand?: InputMaybe; }; @@ -2597,6 +3344,9 @@ export type RequestUpdateInput = { dataAnalystEmail?: InputMaybe; dataAnalystName?: InputMaybe; genePanel?: InputMaybe; + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe>; igoProjectId?: InputMaybe; igoRequestId?: InputMaybe; @@ -2618,7 +3368,6 @@ export type RequestUpdateInput = { >; qcAccessEmails?: InputMaybe; requestJson?: InputMaybe; - revisable?: InputMaybe; smileRequestId?: InputMaybe; strand?: InputMaybe; }; @@ -2668,6 +3417,19 @@ export type RequestWhere = { genePanel_NOT_IN?: InputMaybe>; genePanel_NOT_STARTS_WITH?: InputMaybe; genePanel_STARTS_WITH?: InputMaybe; + hasMetadataRequestMetadataAggregate?: InputMaybe; + hasMetadataRequestMetadataConnection_ALL?: InputMaybe; + hasMetadataRequestMetadataConnection_NONE?: InputMaybe; + hasMetadataRequestMetadataConnection_SINGLE?: InputMaybe; + hasMetadataRequestMetadataConnection_SOME?: InputMaybe; + /** Return Requests where all of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_ALL?: InputMaybe; + /** Return Requests where none of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_NONE?: InputMaybe; + /** Return Requests where one of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_SINGLE?: InputMaybe; + /** Return Requests where some of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_SOME?: InputMaybe; hasSampleSamplesAggregate?: InputMaybe; hasSampleSamplesConnection_ALL?: InputMaybe; hasSampleSamplesConnection_NONE?: InputMaybe; @@ -2830,8 +3592,6 @@ export type RequestWhere = { requestJson_NOT_IN?: InputMaybe>; requestJson_NOT_STARTS_WITH?: InputMaybe; requestJson_STARTS_WITH?: InputMaybe; - revisable?: InputMaybe; - revisable_NOT?: InputMaybe; smileRequestId?: InputMaybe; smileRequestId_CONTAINS?: InputMaybe; smileRequestId_ENDS_WITH?: InputMaybe; @@ -6832,7 +7592,7 @@ export type PatientsListQuery = { patientAliases: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; isAliasPatients: Array<{ __typename?: "Patient"; smilePatientId: string; @@ -6843,6 +7603,7 @@ export type PatientsListQuery = { __typename?: "SampleMetadata"; primaryId: string; cmoSampleName?: string | null; + additionalProperties: string; }>; }>; hasSampleSamplesConnection: { @@ -6852,7 +7613,7 @@ export type PatientsListQuery = { patientAliasesIsAlias: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; }>; }>; }>; @@ -6932,7 +7693,7 @@ export type RequestWithSamplesQuery = { patientAliasesIsAlias: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; }>; }>; }>; @@ -7035,7 +7796,7 @@ export type FindSamplesByInputValueQuery = { patientAliasesIsAlias: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; }>; }; }>; @@ -7358,6 +8119,7 @@ export const PatientsListDocument = gql` hasMetadataSampleMetadata { primaryId cmoSampleName + additionalProperties } } hasSampleSamplesConnection { diff --git a/frontend/src/shared/helpers.tsx b/frontend/src/shared/helpers.tsx index 5b0f2c18..001cd575 100644 --- a/frontend/src/shared/helpers.tsx +++ b/frontend/src/shared/helpers.tsx @@ -198,6 +198,26 @@ export const PatientsListColumns: ColDef[] = [ }, sortable: false, }, + { + headerName: "12-245 Part A", + valueGetter: function ({ data }) { + return JSON.parse( + data["isAliasPatients"][0].hasSampleSamples[0] + ?.hasMetadataSampleMetadata[0]?.additionalProperties + )["consent-parta"]; + }, + sortable: false, + }, + { + headerName: "12-245 Part C", + valueGetter: function ({ data }) { + return JSON.parse( + data["isAliasPatients"][0].hasSampleSamples[0] + ?.hasMetadataSampleMetadata[0]?.additionalProperties + )["consent-partc"]; + }, + sortable: false, + }, { field: "smilePatientId", headerName: "SMILE Patient ID", diff --git a/graphql-server/src/generated/graphql.ts b/graphql-server/src/generated/graphql.ts index c53a96c1..4051b073 100644 --- a/graphql-server/src/generated/graphql.ts +++ b/graphql-server/src/generated/graphql.ts @@ -351,7 +351,7 @@ export type PatientAlias = { isAliasPatientsAggregate?: Maybe; isAliasPatientsConnection: PatientAliasIsAliasPatientsConnection; namespace: Scalars["String"]; - value?: Maybe; + value: Scalars["String"]; }; export type PatientAliasIsAliasPatientsArgs = { @@ -377,7 +377,7 @@ export type PatientAliasAggregateSelection = { __typename?: "PatientAliasAggregateSelection"; count: Scalars["Int"]; namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNullable; + value: StringAggregateSelectionNonNullable; }; export type PatientAliasConnectInput = { @@ -393,7 +393,7 @@ export type PatientAliasConnectWhere = { export type PatientAliasCreateInput = { isAliasPatients?: InputMaybe; namespace: Scalars["String"]; - value?: InputMaybe; + value: Scalars["String"]; }; export type PatientAliasDeleteInput = { @@ -580,11 +580,11 @@ export type PatientAliasWhere = { value?: InputMaybe; value_CONTAINS?: InputMaybe; value_ENDS_WITH?: InputMaybe; - value_IN?: InputMaybe>>; + value_IN?: InputMaybe>; value_NOT?: InputMaybe; value_NOT_CONTAINS?: InputMaybe; value_NOT_ENDS_WITH?: InputMaybe; - value_NOT_IN?: InputMaybe>>; + value_NOT_IN?: InputMaybe>; value_NOT_STARTS_WITH?: InputMaybe; value_STARTS_WITH?: InputMaybe; }; @@ -810,7 +810,7 @@ export type PatientPatientAliasPatientAliasesIsAliasAggregationSelection = { export type PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection = { __typename?: "PatientPatientAliasPatientAliasesIsAliasNodeAggregateSelection"; namespace: StringAggregateSelectionNonNullable; - value: StringAggregateSelectionNullable; + value: StringAggregateSelectionNonNullable; }; export type PatientPatientAliasesIsAliasAggregateInput = { @@ -1825,6 +1825,9 @@ export type Request = { dataAnalystEmail: Scalars["String"]; dataAnalystName: Scalars["String"]; genePanel: Scalars["String"]; + hasMetadataRequestMetadata: Array; + hasMetadataRequestMetadataAggregate?: Maybe; + hasMetadataRequestMetadataConnection: RequestHasMetadataRequestMetadataConnection; hasSampleSamples: Array; hasSampleSamplesAggregate?: Maybe; hasSampleSamplesConnection: RequestHasSampleSamplesConnection; @@ -1839,18 +1842,36 @@ export type Request = { namespace: Scalars["String"]; otherContactEmails: Scalars["String"]; piEmail: Scalars["String"]; - pooledNormals: Array>; + pooledNormals?: Maybe>>; projectManagerName: Scalars["String"]; projectsHasRequest: Array; projectsHasRequestAggregate?: Maybe; projectsHasRequestConnection: RequestProjectsHasRequestConnection; qcAccessEmails: Scalars["String"]; requestJson: Scalars["String"]; - revisable?: Maybe; smileRequestId: Scalars["String"]; strand?: Maybe; }; +export type RequestHasMetadataRequestMetadataArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + export type RequestHasSampleSamplesArgs = { directed?: InputMaybe; options?: InputMaybe; @@ -1914,6 +1935,9 @@ export type RequestAggregateSelection = { }; export type RequestConnectInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe< Array >; @@ -1932,6 +1956,7 @@ export type RequestCreateInput = { dataAnalystEmail: Scalars["String"]; dataAnalystName: Scalars["String"]; genePanel: Scalars["String"]; + hasMetadataRequestMetadata?: InputMaybe; hasSampleSamples?: InputMaybe; igoProjectId: Scalars["String"]; igoRequestId: Scalars["String"]; @@ -1944,17 +1969,19 @@ export type RequestCreateInput = { namespace: Scalars["String"]; otherContactEmails: Scalars["String"]; piEmail: Scalars["String"]; - pooledNormals: Array>; + pooledNormals?: InputMaybe>>; projectManagerName: Scalars["String"]; projectsHasRequest?: InputMaybe; qcAccessEmails: Scalars["String"]; requestJson: Scalars["String"]; - revisable?: InputMaybe; smileRequestId: Scalars["String"]; strand?: InputMaybe; }; export type RequestDeleteInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe>; projectsHasRequest?: InputMaybe< Array @@ -1962,6 +1989,9 @@ export type RequestDeleteInput = { }; export type RequestDisconnectInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe< Array >; @@ -1976,6 +2006,153 @@ export type RequestEdge = { node: Request; }; +export type RequestHasMetadataRequestMetadataAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnection = { + __typename?: "RequestHasMetadataRequestMetadataConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type RequestHasMetadataRequestMetadataConnectionSort = { + node?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataCreateFieldInput = { + node: RequestMetadataCreateInput; +}; + +export type RequestHasMetadataRequestMetadataDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; +}; + +export type RequestHasMetadataRequestMetadataNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + igoRequestId_AVERAGE_EQUAL?: InputMaybe; + igoRequestId_AVERAGE_GT?: InputMaybe; + igoRequestId_AVERAGE_GTE?: InputMaybe; + igoRequestId_AVERAGE_LT?: InputMaybe; + igoRequestId_AVERAGE_LTE?: InputMaybe; + igoRequestId_EQUAL?: InputMaybe; + igoRequestId_GT?: InputMaybe; + igoRequestId_GTE?: InputMaybe; + igoRequestId_LONGEST_EQUAL?: InputMaybe; + igoRequestId_LONGEST_GT?: InputMaybe; + igoRequestId_LONGEST_GTE?: InputMaybe; + igoRequestId_LONGEST_LT?: InputMaybe; + igoRequestId_LONGEST_LTE?: InputMaybe; + igoRequestId_LT?: InputMaybe; + igoRequestId_LTE?: InputMaybe; + igoRequestId_SHORTEST_EQUAL?: InputMaybe; + igoRequestId_SHORTEST_GT?: InputMaybe; + igoRequestId_SHORTEST_GTE?: InputMaybe; + igoRequestId_SHORTEST_LT?: InputMaybe; + igoRequestId_SHORTEST_LTE?: InputMaybe; + importDate_AVERAGE_EQUAL?: InputMaybe; + importDate_AVERAGE_GT?: InputMaybe; + importDate_AVERAGE_GTE?: InputMaybe; + importDate_AVERAGE_LT?: InputMaybe; + importDate_AVERAGE_LTE?: InputMaybe; + importDate_EQUAL?: InputMaybe; + importDate_GT?: InputMaybe; + importDate_GTE?: InputMaybe; + importDate_LONGEST_EQUAL?: InputMaybe; + importDate_LONGEST_GT?: InputMaybe; + importDate_LONGEST_GTE?: InputMaybe; + importDate_LONGEST_LT?: InputMaybe; + importDate_LONGEST_LTE?: InputMaybe; + importDate_LT?: InputMaybe; + importDate_LTE?: InputMaybe; + importDate_SHORTEST_EQUAL?: InputMaybe; + importDate_SHORTEST_GT?: InputMaybe; + importDate_SHORTEST_GTE?: InputMaybe; + importDate_SHORTEST_LT?: InputMaybe; + importDate_SHORTEST_LTE?: InputMaybe; + requestMetadataJson_AVERAGE_EQUAL?: InputMaybe; + requestMetadataJson_AVERAGE_GT?: InputMaybe; + requestMetadataJson_AVERAGE_GTE?: InputMaybe; + requestMetadataJson_AVERAGE_LT?: InputMaybe; + requestMetadataJson_AVERAGE_LTE?: InputMaybe; + requestMetadataJson_EQUAL?: InputMaybe; + requestMetadataJson_GT?: InputMaybe; + requestMetadataJson_GTE?: InputMaybe; + requestMetadataJson_LONGEST_EQUAL?: InputMaybe; + requestMetadataJson_LONGEST_GT?: InputMaybe; + requestMetadataJson_LONGEST_GTE?: InputMaybe; + requestMetadataJson_LONGEST_LT?: InputMaybe; + requestMetadataJson_LONGEST_LTE?: InputMaybe; + requestMetadataJson_LT?: InputMaybe; + requestMetadataJson_LTE?: InputMaybe; + requestMetadataJson_SHORTEST_EQUAL?: InputMaybe; + requestMetadataJson_SHORTEST_GT?: InputMaybe; + requestMetadataJson_SHORTEST_GTE?: InputMaybe; + requestMetadataJson_SHORTEST_LT?: InputMaybe; + requestMetadataJson_SHORTEST_LTE?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataRelationship = { + __typename?: "RequestHasMetadataRequestMetadataRelationship"; + cursor: Scalars["String"]; + node: RequestMetadata; +}; + +export type RequestHasMetadataRequestMetadataUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type RequestHasMetadataRequestMetadataUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + export type RequestHasSampleSamplesAggregateInput = { AND?: InputMaybe>; OR?: InputMaybe>; @@ -2141,6 +2318,9 @@ export type RequestMetadata = { igoRequestId: Scalars["String"]; importDate: Scalars["String"]; requestMetadataJson: Scalars["String"]; + requestsHasMetadata: Array; + requestsHasMetadataAggregate?: Maybe; + requestsHasMetadataConnection: RequestMetadataRequestsHasMetadataConnection; }; export type RequestMetadataHasStatusStatusesArgs = { @@ -2162,6 +2342,25 @@ export type RequestMetadataHasStatusStatusesConnectionArgs = { where?: InputMaybe; }; +export type RequestMetadataRequestsHasMetadataArgs = { + directed?: InputMaybe; + options?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataAggregateArgs = { + directed?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnectionArgs = { + after?: InputMaybe; + directed?: InputMaybe; + first?: InputMaybe; + sort?: InputMaybe>; + where?: InputMaybe; +}; + export type RequestMetadataAggregateSelection = { __typename?: "RequestMetadataAggregateSelection"; count: Scalars["Int"]; @@ -2174,6 +2373,9 @@ export type RequestMetadataConnectInput = { hasStatusStatuses?: InputMaybe< Array >; + requestsHasMetadata?: InputMaybe< + Array + >; }; export type RequestMetadataConnectWhere = { @@ -2192,144 +2394,656 @@ export type RequestMetadataCreateInput = { igoRequestId: Scalars["String"]; importDate: Scalars["String"]; requestMetadataJson: Scalars["String"]; + requestsHasMetadata?: InputMaybe; }; export type RequestMetadataDeleteInput = { hasStatusStatuses?: InputMaybe< Array >; + requestsHasMetadata?: InputMaybe< + Array + >; }; export type RequestMetadataDisconnectInput = { hasStatusStatuses?: InputMaybe< Array >; + requestsHasMetadata?: InputMaybe< + Array + >; +}; + +export type RequestMetadataEdge = { + __typename?: "RequestMetadataEdge"; + cursor: Scalars["String"]; + node: RequestMetadata; +}; + +export type RequestMetadataHasStatusStatusesAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesConnection = { + __typename?: "RequestMetadataHasStatusStatusesConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type RequestMetadataHasStatusStatusesConnectionSort = { + node?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesCreateFieldInput = { + node: StatusCreateInput; +}; + +export type RequestMetadataHasStatusStatusesDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; +}; + +export type RequestMetadataHasStatusStatusesNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + validationReport_AVERAGE_EQUAL?: InputMaybe; + validationReport_AVERAGE_GT?: InputMaybe; + validationReport_AVERAGE_GTE?: InputMaybe; + validationReport_AVERAGE_LT?: InputMaybe; + validationReport_AVERAGE_LTE?: InputMaybe; + validationReport_EQUAL?: InputMaybe; + validationReport_GT?: InputMaybe; + validationReport_GTE?: InputMaybe; + validationReport_LONGEST_EQUAL?: InputMaybe; + validationReport_LONGEST_GT?: InputMaybe; + validationReport_LONGEST_GTE?: InputMaybe; + validationReport_LONGEST_LT?: InputMaybe; + validationReport_LONGEST_LTE?: InputMaybe; + validationReport_LT?: InputMaybe; + validationReport_LTE?: InputMaybe; + validationReport_SHORTEST_EQUAL?: InputMaybe; + validationReport_SHORTEST_GT?: InputMaybe; + validationReport_SHORTEST_GTE?: InputMaybe; + validationReport_SHORTEST_LT?: InputMaybe; + validationReport_SHORTEST_LTE?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesRelationship = { + __typename?: "RequestMetadataHasStatusStatusesRelationship"; + cursor: Scalars["String"]; + node: Status; +}; + +export type RequestMetadataHasStatusStatusesUpdateConnectionInput = { + node?: InputMaybe; +}; + +export type RequestMetadataHasStatusStatusesUpdateFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe>; + delete?: InputMaybe>; + disconnect?: InputMaybe< + Array + >; + update?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataOptions = { + limit?: InputMaybe; + offset?: InputMaybe; + /** 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. */ + sort?: InputMaybe>; +}; + +export type RequestMetadataRelationInput = { + hasStatusStatuses?: InputMaybe< + Array + >; + requestsHasMetadata?: InputMaybe< + Array + >; +}; + +export type RequestMetadataRequestRequestsHasMetadataAggregationSelection = { + __typename?: "RequestMetadataRequestRequestsHasMetadataAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; +}; + +export type RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection = { + __typename?: "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection"; + dataAccessEmails: StringAggregateSelectionNonNullable; + dataAnalystEmail: StringAggregateSelectionNonNullable; + dataAnalystName: StringAggregateSelectionNonNullable; + genePanel: StringAggregateSelectionNonNullable; + igoProjectId: StringAggregateSelectionNonNullable; + igoRequestId: StringAggregateSelectionNonNullable; + investigatorEmail: StringAggregateSelectionNonNullable; + investigatorName: StringAggregateSelectionNonNullable; + labHeadEmail: StringAggregateSelectionNonNullable; + labHeadName: StringAggregateSelectionNonNullable; + libraryType: StringAggregateSelectionNullable; + namespace: StringAggregateSelectionNonNullable; + otherContactEmails: StringAggregateSelectionNonNullable; + piEmail: StringAggregateSelectionNonNullable; + projectManagerName: StringAggregateSelectionNonNullable; + qcAccessEmails: StringAggregateSelectionNonNullable; + requestJson: StringAggregateSelectionNonNullable; + smileRequestId: StringAggregateSelectionNonNullable; + strand: StringAggregateSelectionNullable; +}; + +export type RequestMetadataRequestsHasMetadataAggregateInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + count?: InputMaybe; + count_GT?: InputMaybe; + count_GTE?: InputMaybe; + count_LT?: InputMaybe; + count_LTE?: InputMaybe; + node?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnectFieldInput = { + connect?: InputMaybe>; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnection = { + __typename?: "RequestMetadataRequestsHasMetadataConnection"; + edges: Array; + pageInfo: PageInfo; + totalCount: Scalars["Int"]; +}; + +export type RequestMetadataRequestsHasMetadataConnectionSort = { + node?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataConnectionWhere = { + AND?: InputMaybe>; + OR?: InputMaybe>; + node?: InputMaybe; + node_NOT?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataCreateFieldInput = { + node: RequestCreateInput; +}; + +export type RequestMetadataRequestsHasMetadataDeleteFieldInput = { + delete?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataDisconnectFieldInput = { + disconnect?: InputMaybe; + where?: InputMaybe; +}; + +export type RequestMetadataRequestsHasMetadataFieldInput = { + connect?: InputMaybe< + Array + >; + create?: InputMaybe< + Array + >; +}; + +export type RequestMetadataRequestsHasMetadataNodeAggregationWhereInput = { + AND?: InputMaybe< + Array + >; + OR?: InputMaybe< + Array + >; + 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; + genePanel_AVERAGE_EQUAL?: InputMaybe; + genePanel_AVERAGE_GT?: InputMaybe; + genePanel_AVERAGE_GTE?: InputMaybe; + genePanel_AVERAGE_LT?: InputMaybe; + genePanel_AVERAGE_LTE?: InputMaybe; + genePanel_EQUAL?: InputMaybe; + genePanel_GT?: InputMaybe; + genePanel_GTE?: InputMaybe; + genePanel_LONGEST_EQUAL?: InputMaybe; + genePanel_LONGEST_GT?: InputMaybe; + genePanel_LONGEST_GTE?: InputMaybe; + genePanel_LONGEST_LT?: InputMaybe; + genePanel_LONGEST_LTE?: InputMaybe; + genePanel_LT?: InputMaybe; + genePanel_LTE?: InputMaybe; + genePanel_SHORTEST_EQUAL?: InputMaybe; + genePanel_SHORTEST_GT?: InputMaybe; + genePanel_SHORTEST_GTE?: InputMaybe; + genePanel_SHORTEST_LT?: InputMaybe; + genePanel_SHORTEST_LTE?: InputMaybe; + igoProjectId_AVERAGE_EQUAL?: InputMaybe; + igoProjectId_AVERAGE_GT?: InputMaybe; + igoProjectId_AVERAGE_GTE?: InputMaybe; + igoProjectId_AVERAGE_LT?: InputMaybe; + igoProjectId_AVERAGE_LTE?: InputMaybe; + igoProjectId_EQUAL?: InputMaybe; + igoProjectId_GT?: InputMaybe; + igoProjectId_GTE?: InputMaybe; + igoProjectId_LONGEST_EQUAL?: InputMaybe; + igoProjectId_LONGEST_GT?: InputMaybe; + igoProjectId_LONGEST_GTE?: InputMaybe; + igoProjectId_LONGEST_LT?: InputMaybe; + igoProjectId_LONGEST_LTE?: InputMaybe; + igoProjectId_LT?: InputMaybe; + igoProjectId_LTE?: InputMaybe; + igoProjectId_SHORTEST_EQUAL?: InputMaybe; + igoProjectId_SHORTEST_GT?: InputMaybe; + igoProjectId_SHORTEST_GTE?: InputMaybe; + igoProjectId_SHORTEST_LT?: InputMaybe; + igoProjectId_SHORTEST_LTE?: InputMaybe; + igoRequestId_AVERAGE_EQUAL?: InputMaybe; + igoRequestId_AVERAGE_GT?: InputMaybe; + igoRequestId_AVERAGE_GTE?: InputMaybe; + igoRequestId_AVERAGE_LT?: InputMaybe; + igoRequestId_AVERAGE_LTE?: InputMaybe; + igoRequestId_EQUAL?: InputMaybe; + igoRequestId_GT?: InputMaybe; + igoRequestId_GTE?: InputMaybe; + igoRequestId_LONGEST_EQUAL?: InputMaybe; + igoRequestId_LONGEST_GT?: InputMaybe; + igoRequestId_LONGEST_GTE?: InputMaybe; + igoRequestId_LONGEST_LT?: InputMaybe; + igoRequestId_LONGEST_LTE?: InputMaybe; + igoRequestId_LT?: InputMaybe; + igoRequestId_LTE?: InputMaybe; + igoRequestId_SHORTEST_EQUAL?: InputMaybe; + igoRequestId_SHORTEST_GT?: InputMaybe; + igoRequestId_SHORTEST_GTE?: InputMaybe; + igoRequestId_SHORTEST_LT?: InputMaybe; + igoRequestId_SHORTEST_LTE?: InputMaybe; + investigatorEmail_AVERAGE_EQUAL?: InputMaybe; + investigatorEmail_AVERAGE_GT?: InputMaybe; + investigatorEmail_AVERAGE_GTE?: InputMaybe; + investigatorEmail_AVERAGE_LT?: InputMaybe; + investigatorEmail_AVERAGE_LTE?: InputMaybe; + investigatorEmail_EQUAL?: InputMaybe; + investigatorEmail_GT?: InputMaybe; + investigatorEmail_GTE?: InputMaybe; + investigatorEmail_LONGEST_EQUAL?: InputMaybe; + investigatorEmail_LONGEST_GT?: InputMaybe; + investigatorEmail_LONGEST_GTE?: InputMaybe; + investigatorEmail_LONGEST_LT?: InputMaybe; + investigatorEmail_LONGEST_LTE?: InputMaybe; + investigatorEmail_LT?: InputMaybe; + investigatorEmail_LTE?: InputMaybe; + investigatorEmail_SHORTEST_EQUAL?: InputMaybe; + investigatorEmail_SHORTEST_GT?: InputMaybe; + investigatorEmail_SHORTEST_GTE?: InputMaybe; + investigatorEmail_SHORTEST_LT?: InputMaybe; + investigatorEmail_SHORTEST_LTE?: InputMaybe; + investigatorName_AVERAGE_EQUAL?: InputMaybe; + investigatorName_AVERAGE_GT?: InputMaybe; + investigatorName_AVERAGE_GTE?: InputMaybe; + investigatorName_AVERAGE_LT?: InputMaybe; + investigatorName_AVERAGE_LTE?: InputMaybe; + investigatorName_EQUAL?: InputMaybe; + investigatorName_GT?: InputMaybe; + investigatorName_GTE?: InputMaybe; + investigatorName_LONGEST_EQUAL?: InputMaybe; + investigatorName_LONGEST_GT?: InputMaybe; + investigatorName_LONGEST_GTE?: InputMaybe; + investigatorName_LONGEST_LT?: InputMaybe; + investigatorName_LONGEST_LTE?: InputMaybe; + investigatorName_LT?: InputMaybe; + investigatorName_LTE?: InputMaybe; + investigatorName_SHORTEST_EQUAL?: InputMaybe; + investigatorName_SHORTEST_GT?: InputMaybe; + investigatorName_SHORTEST_GTE?: InputMaybe; + investigatorName_SHORTEST_LT?: InputMaybe; + investigatorName_SHORTEST_LTE?: InputMaybe; + labHeadEmail_AVERAGE_EQUAL?: InputMaybe; + labHeadEmail_AVERAGE_GT?: InputMaybe; + labHeadEmail_AVERAGE_GTE?: InputMaybe; + labHeadEmail_AVERAGE_LT?: InputMaybe; + labHeadEmail_AVERAGE_LTE?: InputMaybe; + labHeadEmail_EQUAL?: InputMaybe; + labHeadEmail_GT?: InputMaybe; + labHeadEmail_GTE?: InputMaybe; + labHeadEmail_LONGEST_EQUAL?: InputMaybe; + labHeadEmail_LONGEST_GT?: InputMaybe; + labHeadEmail_LONGEST_GTE?: InputMaybe; + labHeadEmail_LONGEST_LT?: InputMaybe; + labHeadEmail_LONGEST_LTE?: InputMaybe; + labHeadEmail_LT?: InputMaybe; + labHeadEmail_LTE?: InputMaybe; + labHeadEmail_SHORTEST_EQUAL?: InputMaybe; + labHeadEmail_SHORTEST_GT?: InputMaybe; + labHeadEmail_SHORTEST_GTE?: InputMaybe; + labHeadEmail_SHORTEST_LT?: InputMaybe; + labHeadEmail_SHORTEST_LTE?: InputMaybe; + labHeadName_AVERAGE_EQUAL?: InputMaybe; + labHeadName_AVERAGE_GT?: InputMaybe; + labHeadName_AVERAGE_GTE?: InputMaybe; + labHeadName_AVERAGE_LT?: InputMaybe; + labHeadName_AVERAGE_LTE?: InputMaybe; + labHeadName_EQUAL?: InputMaybe; + labHeadName_GT?: InputMaybe; + labHeadName_GTE?: InputMaybe; + labHeadName_LONGEST_EQUAL?: InputMaybe; + labHeadName_LONGEST_GT?: InputMaybe; + labHeadName_LONGEST_GTE?: InputMaybe; + labHeadName_LONGEST_LT?: InputMaybe; + labHeadName_LONGEST_LTE?: InputMaybe; + labHeadName_LT?: InputMaybe; + labHeadName_LTE?: InputMaybe; + labHeadName_SHORTEST_EQUAL?: InputMaybe; + labHeadName_SHORTEST_GT?: InputMaybe; + labHeadName_SHORTEST_GTE?: InputMaybe; + labHeadName_SHORTEST_LT?: InputMaybe; + labHeadName_SHORTEST_LTE?: InputMaybe; + libraryType_AVERAGE_EQUAL?: InputMaybe; + libraryType_AVERAGE_GT?: InputMaybe; + libraryType_AVERAGE_GTE?: InputMaybe; + libraryType_AVERAGE_LT?: InputMaybe; + libraryType_AVERAGE_LTE?: InputMaybe; + libraryType_EQUAL?: InputMaybe; + libraryType_GT?: InputMaybe; + libraryType_GTE?: InputMaybe; + libraryType_LONGEST_EQUAL?: InputMaybe; + libraryType_LONGEST_GT?: InputMaybe; + libraryType_LONGEST_GTE?: InputMaybe; + libraryType_LONGEST_LT?: InputMaybe; + libraryType_LONGEST_LTE?: InputMaybe; + libraryType_LT?: InputMaybe; + libraryType_LTE?: InputMaybe; + libraryType_SHORTEST_EQUAL?: InputMaybe; + libraryType_SHORTEST_GT?: InputMaybe; + libraryType_SHORTEST_GTE?: InputMaybe; + libraryType_SHORTEST_LT?: InputMaybe; + libraryType_SHORTEST_LTE?: 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; + otherContactEmails_AVERAGE_EQUAL?: InputMaybe; + otherContactEmails_AVERAGE_GT?: InputMaybe; + otherContactEmails_AVERAGE_GTE?: InputMaybe; + otherContactEmails_AVERAGE_LT?: InputMaybe; + otherContactEmails_AVERAGE_LTE?: InputMaybe; + otherContactEmails_EQUAL?: InputMaybe; + otherContactEmails_GT?: InputMaybe; + otherContactEmails_GTE?: InputMaybe; + otherContactEmails_LONGEST_EQUAL?: InputMaybe; + otherContactEmails_LONGEST_GT?: InputMaybe; + otherContactEmails_LONGEST_GTE?: InputMaybe; + otherContactEmails_LONGEST_LT?: InputMaybe; + otherContactEmails_LONGEST_LTE?: InputMaybe; + otherContactEmails_LT?: InputMaybe; + otherContactEmails_LTE?: InputMaybe; + otherContactEmails_SHORTEST_EQUAL?: InputMaybe; + otherContactEmails_SHORTEST_GT?: InputMaybe; + otherContactEmails_SHORTEST_GTE?: InputMaybe; + otherContactEmails_SHORTEST_LT?: InputMaybe; + otherContactEmails_SHORTEST_LTE?: InputMaybe; + piEmail_AVERAGE_EQUAL?: InputMaybe; + piEmail_AVERAGE_GT?: InputMaybe; + piEmail_AVERAGE_GTE?: InputMaybe; + piEmail_AVERAGE_LT?: InputMaybe; + piEmail_AVERAGE_LTE?: InputMaybe; + piEmail_EQUAL?: InputMaybe; + piEmail_GT?: InputMaybe; + piEmail_GTE?: InputMaybe; + piEmail_LONGEST_EQUAL?: InputMaybe; + piEmail_LONGEST_GT?: InputMaybe; + piEmail_LONGEST_GTE?: InputMaybe; + piEmail_LONGEST_LT?: InputMaybe; + piEmail_LONGEST_LTE?: InputMaybe; + piEmail_LT?: InputMaybe; + piEmail_LTE?: InputMaybe; + piEmail_SHORTEST_EQUAL?: InputMaybe; + piEmail_SHORTEST_GT?: InputMaybe; + piEmail_SHORTEST_GTE?: InputMaybe; + piEmail_SHORTEST_LT?: InputMaybe; + piEmail_SHORTEST_LTE?: InputMaybe; + projectManagerName_AVERAGE_EQUAL?: InputMaybe; + projectManagerName_AVERAGE_GT?: InputMaybe; + projectManagerName_AVERAGE_GTE?: InputMaybe; + projectManagerName_AVERAGE_LT?: InputMaybe; + projectManagerName_AVERAGE_LTE?: InputMaybe; + projectManagerName_EQUAL?: InputMaybe; + projectManagerName_GT?: InputMaybe; + projectManagerName_GTE?: InputMaybe; + projectManagerName_LONGEST_EQUAL?: InputMaybe; + projectManagerName_LONGEST_GT?: InputMaybe; + projectManagerName_LONGEST_GTE?: InputMaybe; + projectManagerName_LONGEST_LT?: InputMaybe; + projectManagerName_LONGEST_LTE?: InputMaybe; + projectManagerName_LT?: InputMaybe; + projectManagerName_LTE?: InputMaybe; + projectManagerName_SHORTEST_EQUAL?: InputMaybe; + projectManagerName_SHORTEST_GT?: InputMaybe; + projectManagerName_SHORTEST_GTE?: InputMaybe; + projectManagerName_SHORTEST_LT?: InputMaybe; + projectManagerName_SHORTEST_LTE?: InputMaybe; + qcAccessEmails_AVERAGE_EQUAL?: InputMaybe; + qcAccessEmails_AVERAGE_GT?: InputMaybe; + qcAccessEmails_AVERAGE_GTE?: InputMaybe; + qcAccessEmails_AVERAGE_LT?: InputMaybe; + qcAccessEmails_AVERAGE_LTE?: InputMaybe; + qcAccessEmails_EQUAL?: InputMaybe; + qcAccessEmails_GT?: InputMaybe; + qcAccessEmails_GTE?: InputMaybe; + qcAccessEmails_LONGEST_EQUAL?: InputMaybe; + qcAccessEmails_LONGEST_GT?: InputMaybe; + qcAccessEmails_LONGEST_GTE?: InputMaybe; + qcAccessEmails_LONGEST_LT?: InputMaybe; + qcAccessEmails_LONGEST_LTE?: InputMaybe; + qcAccessEmails_LT?: InputMaybe; + qcAccessEmails_LTE?: InputMaybe; + qcAccessEmails_SHORTEST_EQUAL?: InputMaybe; + qcAccessEmails_SHORTEST_GT?: InputMaybe; + qcAccessEmails_SHORTEST_GTE?: InputMaybe; + qcAccessEmails_SHORTEST_LT?: InputMaybe; + qcAccessEmails_SHORTEST_LTE?: InputMaybe; + requestJson_AVERAGE_EQUAL?: InputMaybe; + requestJson_AVERAGE_GT?: InputMaybe; + requestJson_AVERAGE_GTE?: InputMaybe; + requestJson_AVERAGE_LT?: InputMaybe; + requestJson_AVERAGE_LTE?: InputMaybe; + requestJson_EQUAL?: InputMaybe; + requestJson_GT?: InputMaybe; + requestJson_GTE?: InputMaybe; + requestJson_LONGEST_EQUAL?: InputMaybe; + requestJson_LONGEST_GT?: InputMaybe; + requestJson_LONGEST_GTE?: InputMaybe; + requestJson_LONGEST_LT?: InputMaybe; + requestJson_LONGEST_LTE?: InputMaybe; + requestJson_LT?: InputMaybe; + requestJson_LTE?: InputMaybe; + requestJson_SHORTEST_EQUAL?: InputMaybe; + requestJson_SHORTEST_GT?: InputMaybe; + requestJson_SHORTEST_GTE?: InputMaybe; + requestJson_SHORTEST_LT?: InputMaybe; + requestJson_SHORTEST_LTE?: InputMaybe; + smileRequestId_AVERAGE_EQUAL?: InputMaybe; + smileRequestId_AVERAGE_GT?: InputMaybe; + smileRequestId_AVERAGE_GTE?: InputMaybe; + smileRequestId_AVERAGE_LT?: InputMaybe; + smileRequestId_AVERAGE_LTE?: InputMaybe; + smileRequestId_EQUAL?: InputMaybe; + smileRequestId_GT?: InputMaybe; + smileRequestId_GTE?: InputMaybe; + smileRequestId_LONGEST_EQUAL?: InputMaybe; + smileRequestId_LONGEST_GT?: InputMaybe; + smileRequestId_LONGEST_GTE?: InputMaybe; + smileRequestId_LONGEST_LT?: InputMaybe; + smileRequestId_LONGEST_LTE?: InputMaybe; + smileRequestId_LT?: InputMaybe; + smileRequestId_LTE?: InputMaybe; + smileRequestId_SHORTEST_EQUAL?: InputMaybe; + smileRequestId_SHORTEST_GT?: InputMaybe; + smileRequestId_SHORTEST_GTE?: InputMaybe; + smileRequestId_SHORTEST_LT?: InputMaybe; + smileRequestId_SHORTEST_LTE?: InputMaybe; + strand_AVERAGE_EQUAL?: InputMaybe; + strand_AVERAGE_GT?: InputMaybe; + strand_AVERAGE_GTE?: InputMaybe; + strand_AVERAGE_LT?: InputMaybe; + strand_AVERAGE_LTE?: InputMaybe; + strand_EQUAL?: InputMaybe; + strand_GT?: InputMaybe; + strand_GTE?: InputMaybe; + strand_LONGEST_EQUAL?: InputMaybe; + strand_LONGEST_GT?: InputMaybe; + strand_LONGEST_GTE?: InputMaybe; + strand_LONGEST_LT?: InputMaybe; + strand_LONGEST_LTE?: InputMaybe; + strand_LT?: InputMaybe; + strand_LTE?: InputMaybe; + strand_SHORTEST_EQUAL?: InputMaybe; + strand_SHORTEST_GT?: InputMaybe; + strand_SHORTEST_GTE?: InputMaybe; + strand_SHORTEST_LT?: InputMaybe; + strand_SHORTEST_LTE?: InputMaybe; }; -export type RequestMetadataEdge = { - __typename?: "RequestMetadataEdge"; +export type RequestMetadataRequestsHasMetadataRelationship = { + __typename?: "RequestMetadataRequestsHasMetadataRelationship"; cursor: Scalars["String"]; - node: RequestMetadata; -}; - -export type RequestMetadataHasStatusStatusesAggregateInput = { - AND?: InputMaybe>; - OR?: InputMaybe>; - count?: InputMaybe; - count_GT?: InputMaybe; - count_GTE?: InputMaybe; - count_LT?: InputMaybe; - count_LTE?: InputMaybe; - node?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesConnectFieldInput = { - connect?: InputMaybe>; - where?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesConnection = { - __typename?: "RequestMetadataHasStatusStatusesConnection"; - edges: Array; - pageInfo: PageInfo; - totalCount: Scalars["Int"]; -}; - -export type RequestMetadataHasStatusStatusesConnectionSort = { - node?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesConnectionWhere = { - AND?: InputMaybe>; - OR?: InputMaybe>; - node?: InputMaybe; - node_NOT?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesCreateFieldInput = { - node: StatusCreateInput; -}; - -export type RequestMetadataHasStatusStatusesDeleteFieldInput = { - delete?: InputMaybe; - where?: InputMaybe; + node: Request; }; -export type RequestMetadataHasStatusStatusesDisconnectFieldInput = { - disconnect?: InputMaybe; - where?: InputMaybe; +export type RequestMetadataRequestsHasMetadataUpdateConnectionInput = { + node?: InputMaybe; }; -export type RequestMetadataHasStatusStatusesFieldInput = { +export type RequestMetadataRequestsHasMetadataUpdateFieldInput = { connect?: InputMaybe< - Array + Array >; - create?: InputMaybe>; -}; - -export type RequestMetadataHasStatusStatusesNodeAggregationWhereInput = { - AND?: InputMaybe< - Array - >; - OR?: InputMaybe< - Array + create?: InputMaybe< + Array >; - validationReport_AVERAGE_EQUAL?: InputMaybe; - validationReport_AVERAGE_GT?: InputMaybe; - validationReport_AVERAGE_GTE?: InputMaybe; - validationReport_AVERAGE_LT?: InputMaybe; - validationReport_AVERAGE_LTE?: InputMaybe; - validationReport_EQUAL?: InputMaybe; - validationReport_GT?: InputMaybe; - validationReport_GTE?: InputMaybe; - validationReport_LONGEST_EQUAL?: InputMaybe; - validationReport_LONGEST_GT?: InputMaybe; - validationReport_LONGEST_GTE?: InputMaybe; - validationReport_LONGEST_LT?: InputMaybe; - validationReport_LONGEST_LTE?: InputMaybe; - validationReport_LT?: InputMaybe; - validationReport_LTE?: InputMaybe; - validationReport_SHORTEST_EQUAL?: InputMaybe; - validationReport_SHORTEST_GT?: InputMaybe; - validationReport_SHORTEST_GTE?: InputMaybe; - validationReport_SHORTEST_LT?: InputMaybe; - validationReport_SHORTEST_LTE?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesRelationship = { - __typename?: "RequestMetadataHasStatusStatusesRelationship"; - cursor: Scalars["String"]; - node: Status; -}; - -export type RequestMetadataHasStatusStatusesUpdateConnectionInput = { - node?: InputMaybe; -}; - -export type RequestMetadataHasStatusStatusesUpdateFieldInput = { - connect?: InputMaybe< - Array + delete?: InputMaybe< + Array >; - create?: InputMaybe>; - delete?: InputMaybe>; disconnect?: InputMaybe< - Array - >; - update?: InputMaybe; - where?: InputMaybe; -}; - -export type RequestMetadataOptions = { - limit?: InputMaybe; - offset?: InputMaybe; - /** 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. */ - sort?: InputMaybe>; -}; - -export type RequestMetadataRelationInput = { - hasStatusStatuses?: InputMaybe< - Array + Array >; + update?: InputMaybe; + where?: InputMaybe; }; /** Fields to sort RequestMetadata by. The order in which sorts are applied is not guaranteed when specifying many fields in one RequestMetadataSort object. */ @@ -2357,6 +3071,9 @@ export type RequestMetadataUpdateInput = { igoRequestId?: InputMaybe; importDate?: InputMaybe; requestMetadataJson?: InputMaybe; + requestsHasMetadata?: InputMaybe< + Array + >; }; export type RequestMetadataWhere = { @@ -2405,6 +3122,19 @@ export type RequestMetadataWhere = { requestMetadataJson_NOT_IN?: InputMaybe>; requestMetadataJson_NOT_STARTS_WITH?: InputMaybe; requestMetadataJson_STARTS_WITH?: InputMaybe; + requestsHasMetadataAggregate?: InputMaybe; + requestsHasMetadataConnection_ALL?: InputMaybe; + requestsHasMetadataConnection_NONE?: InputMaybe; + requestsHasMetadataConnection_SINGLE?: InputMaybe; + requestsHasMetadataConnection_SOME?: InputMaybe; + /** Return RequestMetadata where all of the related Requests match this filter */ + requestsHasMetadata_ALL?: InputMaybe; + /** Return RequestMetadata where none of the related Requests match this filter */ + requestsHasMetadata_NONE?: InputMaybe; + /** Return RequestMetadata where one of the related Requests match this filter */ + requestsHasMetadata_SINGLE?: InputMaybe; + /** Return RequestMetadata where some of the related Requests match this filter */ + requestsHasMetadata_SOME?: InputMaybe; }; export type RequestOptions = { @@ -2544,12 +3274,30 @@ export type RequestProjectsHasRequestUpdateFieldInput = { }; export type RequestRelationInput = { + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe>; projectsHasRequest?: InputMaybe< Array >; }; +export type RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection = + { + __typename?: "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection"; + count: Scalars["Int"]; + node?: Maybe; + }; + +export type RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection = + { + __typename?: "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection"; + igoRequestId: StringAggregateSelectionNonNullable; + importDate: StringAggregateSelectionNonNullable; + requestMetadataJson: StringAggregateSelectionNonNullable; + }; + export type RequestSampleHasSampleSamplesAggregationSelection = { __typename?: "RequestSampleHasSampleSamplesAggregationSelection"; count: Scalars["Int"]; @@ -2585,7 +3333,6 @@ export type RequestSort = { projectManagerName?: InputMaybe; qcAccessEmails?: InputMaybe; requestJson?: InputMaybe; - revisable?: InputMaybe; smileRequestId?: InputMaybe; strand?: InputMaybe; }; @@ -2596,6 +3343,9 @@ export type RequestUpdateInput = { dataAnalystEmail?: InputMaybe; dataAnalystName?: InputMaybe; genePanel?: InputMaybe; + hasMetadataRequestMetadata?: InputMaybe< + Array + >; hasSampleSamples?: InputMaybe>; igoProjectId?: InputMaybe; igoRequestId?: InputMaybe; @@ -2617,7 +3367,6 @@ export type RequestUpdateInput = { >; qcAccessEmails?: InputMaybe; requestJson?: InputMaybe; - revisable?: InputMaybe; smileRequestId?: InputMaybe; strand?: InputMaybe; }; @@ -2667,6 +3416,19 @@ export type RequestWhere = { genePanel_NOT_IN?: InputMaybe>; genePanel_NOT_STARTS_WITH?: InputMaybe; genePanel_STARTS_WITH?: InputMaybe; + hasMetadataRequestMetadataAggregate?: InputMaybe; + hasMetadataRequestMetadataConnection_ALL?: InputMaybe; + hasMetadataRequestMetadataConnection_NONE?: InputMaybe; + hasMetadataRequestMetadataConnection_SINGLE?: InputMaybe; + hasMetadataRequestMetadataConnection_SOME?: InputMaybe; + /** Return Requests where all of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_ALL?: InputMaybe; + /** Return Requests where none of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_NONE?: InputMaybe; + /** Return Requests where one of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_SINGLE?: InputMaybe; + /** Return Requests where some of the related RequestMetadata match this filter */ + hasMetadataRequestMetadata_SOME?: InputMaybe; hasSampleSamplesAggregate?: InputMaybe; hasSampleSamplesConnection_ALL?: InputMaybe; hasSampleSamplesConnection_NONE?: InputMaybe; @@ -2829,8 +3591,6 @@ export type RequestWhere = { requestJson_NOT_IN?: InputMaybe>; requestJson_NOT_STARTS_WITH?: InputMaybe; requestJson_STARTS_WITH?: InputMaybe; - revisable?: InputMaybe; - revisable_NOT?: InputMaybe; smileRequestId?: InputMaybe; smileRequestId_CONTAINS?: InputMaybe; smileRequestId_ENDS_WITH?: InputMaybe; @@ -6831,7 +7591,7 @@ export type PatientsListQuery = { patientAliases: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; isAliasPatients: Array<{ __typename?: "Patient"; smilePatientId: string; @@ -6842,6 +7602,7 @@ export type PatientsListQuery = { __typename?: "SampleMetadata"; primaryId: string; cmoSampleName?: string | null; + additionalProperties: string; }>; }>; hasSampleSamplesConnection: { @@ -6851,7 +7612,7 @@ export type PatientsListQuery = { patientAliasesIsAlias: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; }>; }>; }>; @@ -6931,7 +7692,7 @@ export type RequestWithSamplesQuery = { patientAliasesIsAlias: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; }>; }>; }>; @@ -7034,7 +7795,7 @@ export type FindSamplesByInputValueQuery = { patientAliasesIsAlias: Array<{ __typename?: "PatientAlias"; namespace: string; - value?: string | null; + value: string; }>; }; }>; @@ -7308,6 +8069,7 @@ export const PatientsListDocument = gql` hasMetadataSampleMetadata { primaryId cmoSampleName + additionalProperties } } hasSampleSamplesConnection { diff --git a/graphql.schema.json b/graphql.schema.json index 5b8e25a7..013e7aee 100644 --- a/graphql.schema.json +++ b/graphql.schema.json @@ -2869,9 +2869,13 @@ "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -2928,7 +2932,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -3037,9 +3041,13 @@ "name": "value", "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, @@ -4681,9 +4689,13 @@ "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, @@ -4733,9 +4745,13 @@ "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, @@ -6907,7 +6923,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "StringAggregateSelectionNullable", + "name": "StringAggregateSelectionNonNullable", "ofType": null } }, @@ -17053,6 +17069,189 @@ "isDeprecated": false, "deprecationReason": null }, + { + "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": "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 + }, + { + "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": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestHasMetadataRequestMetadataConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "hasSampleSamples", "description": null, @@ -17413,16 +17612,12 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, @@ -17659,18 +17854,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "revisable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "smileRequestId", "description": null, @@ -18043,7 +18226,7 @@ "fields": null, "inputFields": [ { - "name": "hasSampleSamples", + "name": "hasMetadataRequestMetadata", "description": null, "type": { "kind": "LIST", @@ -18053,7 +18236,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", + "name": "RequestHasMetadataRequestMetadataConnectFieldInput", "ofType": null } } @@ -18063,7 +18246,7 @@ "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "hasSampleSamples", "description": null, "type": { "kind": "LIST", @@ -18073,7 +18256,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectFieldInput", + "name": "RequestHasSampleSamplesConnectFieldInput", "ofType": null } } @@ -18081,12 +18264,32 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, + }, + { + "name": "projectsHasRequest", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "INPUT_OBJECT", "name": "RequestConnectWhere", @@ -18200,6 +18403,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "hasMetadataRequestMetadata", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "hasSampleSamples", "description": null, @@ -18388,16 +18603,12 @@ "name": "pooledNormals", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -18464,18 +18675,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "revisable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "smileRequestId", "description": null, @@ -18515,6 +18714,26 @@ "description": null, "fields": null, "inputFields": [ + { + "name": "hasMetadataRequestMetadata", + "description": null, + "type": { + "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": "hasSampleSamples", "description": null, @@ -18566,6 +18785,26 @@ "description": null, "fields": null, "inputFields": [ + { + "name": "hasMetadataRequestMetadata", + "description": null, + "type": { + "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": "hasSampleSamples", "description": null, @@ -18656,7 +18895,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesAggregateInput", + "name": "RequestHasMetadataRequestMetadataAggregateInput", "description": null, "fields": null, "inputFields": [ @@ -18671,7 +18910,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesAggregateInput", + "name": "RequestHasMetadataRequestMetadataAggregateInput", "ofType": null } } @@ -18691,7 +18930,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesAggregateInput", + "name": "RequestHasMetadataRequestMetadataAggregateInput", "ofType": null } } @@ -18765,7 +19004,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", "ofType": null }, "defaultValue": null, @@ -18779,7 +19018,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", + "name": "RequestHasMetadataRequestMetadataConnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -18794,7 +19033,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleConnectInput", + "name": "RequestMetadataConnectInput", "ofType": null } } @@ -18808,7 +19047,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleConnectWhere", + "name": "RequestMetadataConnectWhere", "ofType": null }, "defaultValue": null, @@ -18822,7 +19061,7 @@ }, { "kind": "OBJECT", - "name": "RequestHasSampleSamplesConnection", + "name": "RequestHasMetadataRequestMetadataConnection", "description": null, "fields": [ { @@ -18840,7 +19079,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RequestHasSampleSamplesRelationship", + "name": "RequestHasMetadataRequestMetadataRelationship", "ofType": null } } @@ -18889,7 +19128,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionSort", + "name": "RequestHasMetadataRequestMetadataConnectionSort", "description": null, "fields": null, "inputFields": [ @@ -18898,7 +19137,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleSort", + "name": "RequestMetadataSort", "ofType": null }, "defaultValue": null, @@ -18912,7 +19151,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "description": null, "fields": null, "inputFields": [ @@ -18927,7 +19166,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null } } @@ -18947,7 +19186,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null } } @@ -18961,7 +19200,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -18973,7 +19212,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleWhere", + "name": "RequestMetadataWhere", "ofType": null }, "defaultValue": null, @@ -18987,7 +19226,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", + "name": "RequestHasMetadataRequestMetadataCreateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -18999,7 +19238,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SampleCreateInput", + "name": "RequestMetadataCreateInput", "ofType": null } }, @@ -19014,7 +19253,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDeleteFieldInput", + "name": "RequestHasMetadataRequestMetadataDeleteFieldInput", "description": null, "fields": null, "inputFields": [ @@ -19023,7 +19262,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleDeleteInput", + "name": "RequestMetadataDeleteInput", "ofType": null }, "defaultValue": null, @@ -19035,7 +19274,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -19049,7 +19288,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDisconnectFieldInput", + "name": "RequestHasMetadataRequestMetadataDisconnectFieldInput", "description": null, "fields": null, "inputFields": [ @@ -19058,7 +19297,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleDisconnectInput", + "name": "RequestMetadataDisconnectInput", "ofType": null }, "defaultValue": null, @@ -19070,7 +19309,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectionWhere", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", "ofType": null }, "defaultValue": null, @@ -19084,7 +19323,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesFieldInput", + "name": "RequestHasMetadataRequestMetadataFieldInput", "description": null, "fields": null, "inputFields": [ @@ -19099,7 +19338,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", + "name": "RequestHasMetadataRequestMetadataConnectFieldInput", "ofType": null } } @@ -19119,7 +19358,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", + "name": "RequestHasMetadataRequestMetadataCreateFieldInput", "ofType": null } } @@ -19135,7 +19374,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", "description": null, "fields": null, "inputFields": [ @@ -19150,7 +19389,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", "ofType": null } } @@ -19170,7 +19409,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "name": "RequestHasMetadataRequestMetadataNodeAggregationWhereInput", "ofType": null } } @@ -19180,7 +19419,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_EQUAL", + "name": "igoRequestId_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19192,7 +19431,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GT", + "name": "igoRequestId_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -19204,7 +19443,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_GTE", + "name": "igoRequestId_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19216,7 +19455,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LT", + "name": "igoRequestId_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -19228,7 +19467,7 @@ "deprecationReason": null }, { - "name": "datasource_AVERAGE_LTE", + "name": "igoRequestId_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19240,7 +19479,7 @@ "deprecationReason": null }, { - "name": "datasource_EQUAL", + "name": "igoRequestId_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19252,7 +19491,7 @@ "deprecationReason": null }, { - "name": "datasource_GT", + "name": "igoRequestId_GT", "description": null, "type": { "kind": "SCALAR", @@ -19264,7 +19503,7 @@ "deprecationReason": null }, { - "name": "datasource_GTE", + "name": "igoRequestId_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19276,7 +19515,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_EQUAL", + "name": "igoRequestId_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19288,7 +19527,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GT", + "name": "igoRequestId_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19300,7 +19539,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_GTE", + "name": "igoRequestId_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19312,7 +19551,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LT", + "name": "igoRequestId_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19324,7 +19563,7 @@ "deprecationReason": null }, { - "name": "datasource_LONGEST_LTE", + "name": "igoRequestId_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19336,7 +19575,7 @@ "deprecationReason": null }, { - "name": "datasource_LT", + "name": "igoRequestId_LT", "description": null, "type": { "kind": "SCALAR", @@ -19348,7 +19587,7 @@ "deprecationReason": null }, { - "name": "datasource_LTE", + "name": "igoRequestId_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19360,7 +19599,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_EQUAL", + "name": "igoRequestId_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19372,7 +19611,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GT", + "name": "igoRequestId_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19384,7 +19623,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_GTE", + "name": "igoRequestId_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19396,7 +19635,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LT", + "name": "igoRequestId_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19408,7 +19647,7 @@ "deprecationReason": null }, { - "name": "datasource_SHORTEST_LTE", + "name": "igoRequestId_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19420,7 +19659,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_EQUAL", + "name": "importDate_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19432,7 +19671,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GT", + "name": "importDate_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -19444,7 +19683,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_GTE", + "name": "importDate_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19456,7 +19695,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LT", + "name": "importDate_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -19468,7 +19707,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_AVERAGE_LTE", + "name": "importDate_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19480,7 +19719,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_EQUAL", + "name": "importDate_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19492,7 +19731,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GT", + "name": "importDate_GT", "description": null, "type": { "kind": "SCALAR", @@ -19504,7 +19743,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_GTE", + "name": "importDate_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19516,7 +19755,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_EQUAL", + "name": "importDate_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19528,7 +19767,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GT", + "name": "importDate_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19540,7 +19779,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_GTE", + "name": "importDate_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19552,7 +19791,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LT", + "name": "importDate_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19564,7 +19803,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LONGEST_LTE", + "name": "importDate_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19576,7 +19815,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LT", + "name": "importDate_LT", "description": null, "type": { "kind": "SCALAR", @@ -19588,7 +19827,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_LTE", + "name": "importDate_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19600,7 +19839,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_EQUAL", + "name": "importDate_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19612,7 +19851,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GT", + "name": "importDate_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19624,7 +19863,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_GTE", + "name": "importDate_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19636,7 +19875,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LT", + "name": "importDate_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19648,7 +19887,7 @@ "deprecationReason": null }, { - "name": "sampleCategory_SHORTEST_LTE", + "name": "importDate_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19660,7 +19899,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_EQUAL", + "name": "requestMetadataJson_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19672,7 +19911,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GT", + "name": "requestMetadataJson_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -19684,7 +19923,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_GTE", + "name": "requestMetadataJson_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19696,7 +19935,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LT", + "name": "requestMetadataJson_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -19708,7 +19947,7 @@ "deprecationReason": null }, { - "name": "sampleClass_AVERAGE_LTE", + "name": "requestMetadataJson_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19720,7 +19959,7 @@ "deprecationReason": null }, { - "name": "sampleClass_EQUAL", + "name": "requestMetadataJson_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19732,7 +19971,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GT", + "name": "requestMetadataJson_GT", "description": null, "type": { "kind": "SCALAR", @@ -19744,7 +19983,7 @@ "deprecationReason": null }, { - "name": "sampleClass_GTE", + "name": "requestMetadataJson_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19756,7 +19995,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_EQUAL", + "name": "requestMetadataJson_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19768,7 +20007,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GT", + "name": "requestMetadataJson_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19780,7 +20019,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_GTE", + "name": "requestMetadataJson_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19792,7 +20031,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LT", + "name": "requestMetadataJson_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19804,7 +20043,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LONGEST_LTE", + "name": "requestMetadataJson_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19816,7 +20055,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LT", + "name": "requestMetadataJson_LT", "description": null, "type": { "kind": "SCALAR", @@ -19828,7 +20067,7 @@ "deprecationReason": null }, { - "name": "sampleClass_LTE", + "name": "requestMetadataJson_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19840,7 +20079,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_EQUAL", + "name": "requestMetadataJson_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -19852,7 +20091,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GT", + "name": "requestMetadataJson_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -19864,7 +20103,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_GTE", + "name": "requestMetadataJson_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -19876,7 +20115,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LT", + "name": "requestMetadataJson_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -19888,7 +20127,7 @@ "deprecationReason": null }, { - "name": "sampleClass_SHORTEST_LTE", + "name": "requestMetadataJson_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -19898,109 +20137,170 @@ "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 - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestHasMetadataRequestMetadataRelationship", + "description": null, + "fields": [ { - "name": "smileSampleId_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": "smileSampleId_AVERAGE_GTE", + "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": "RequestHasMetadataRequestMetadataUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "smileSampleId_AVERAGE_LT", + "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": "RequestHasMetadataRequestMetadataUpdateFieldInput", + "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": "RequestHasMetadataRequestMetadataConnectFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_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": "RequestHasMetadataRequestMetadataCreateFieldInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_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": "smileSampleId_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": "smileSampleId_LONGEST_EQUAL", + "name": "update", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataUpdateConnectionInput", "ofType": null }, "defaultValue": null, @@ -20008,43 +20308,70 @@ "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_GT", + "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": "smileSampleId_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": "RequestHasSampleSamplesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_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": "RequestHasSampleSamplesAggregateInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_LONGEST_LTE", + "name": "count", "description": null, "type": { "kind": "SCALAR", @@ -20056,7 +20383,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LT", + "name": "count_GT", "description": null, "type": { "kind": "SCALAR", @@ -20068,7 +20395,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_LTE", + "name": "count_GTE", "description": null, "type": { "kind": "SCALAR", @@ -20080,7 +20407,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_EQUAL", + "name": "count_LT", "description": null, "type": { "kind": "SCALAR", @@ -20092,7 +20419,7 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GT", + "name": "count_LTE", "description": null, "type": { "kind": "SCALAR", @@ -20104,35 +20431,54 @@ "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_GTE", + "name": "node", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "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": "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": "SampleConnectInput", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "smileSampleId_SHORTEST_LTE", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "SampleConnectWhere", "ofType": null }, "defaultValue": null, @@ -20146,27 +20492,35 @@ }, { "kind": "OBJECT", - "name": "RequestHasSampleSamplesRelationship", + "name": "RequestHasSampleSamplesConnection", "description": null, "fields": [ { - "name": "cursor", + "name": "edges", "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestHasSampleSamplesRelationship", + "ofType": null + } + } + } + }, + "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "pageInfo", "description": null, "args": [], "type": { @@ -20174,7 +20528,23 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Sample", + "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 } }, @@ -20189,7 +20559,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesUpdateConnectionInput", + "name": "RequestHasSampleSamplesConnectionSort", "description": null, "fields": null, "inputFields": [ @@ -20198,7 +20568,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "SampleUpdateInput", + "name": "SampleSort", "ofType": null }, "defaultValue": null, @@ -20212,12 +20582,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesUpdateFieldInput", + "name": "RequestHasSampleSamplesConnectionWhere", "description": null, "fields": null, "inputFields": [ { - "name": "connect", + "name": "AND", "description": null, "type": { "kind": "LIST", @@ -20227,7 +20597,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesConnectFieldInput", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null } } @@ -20237,7 +20607,7 @@ "deprecationReason": null }, { - "name": "create", + "name": "OR", "description": null, "type": { "kind": "LIST", @@ -20247,7 +20617,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", + "name": "RequestHasSampleSamplesConnectionWhere", "ofType": null } } @@ -20257,51 +20627,108 @@ "deprecationReason": null }, { - "name": "delete", + "name": "node", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDeleteFieldInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "SampleWhere", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "disconnect", + "name": "node_NOT", "description": null, "type": { - "kind": "LIST", + "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": "node", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesDisconnectFieldInput", - "ofType": null - } + "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": "delete", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDeleteInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "update", + "name": "where", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesUpdateConnectionInput", + "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": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SampleDisconnectInput", "ofType": null }, "defaultValue": null, @@ -20326,459 +20753,7963 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "RequestMetadata", + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesFieldInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "hasStatusStatuses", + "name": "connect", "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": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesConnectFieldInput", + "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "hasStatusStatusesAggregate", + "name": "create", "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": { + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "name": "RequestHasSampleSamplesCreateFieldInput", "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "RequestMetadataStatusHasStatusStatusesAggregationSelection", - "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "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 - } - ], + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AND", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RequestMetadataHasStatusStatusesConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "igoRequestId", + "name": "OR", "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": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesNodeAggregationWhereInput", + "ofType": null + } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "importDate", + "name": "datasource_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": "requestMetadataJson", + "name": "datasource_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 - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataAggregateSelection", - "description": null, - "fields": [ + }, { - "name": "count", + "name": "datasource_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": "igoRequestId", + "name": "datasource_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": "importDate", + "name": "datasource_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": "requestMetadataJson", + "name": "datasource_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": "RequestMetadataConnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "datasource_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "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": "node", + "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": "RequestHasSampleSamplesRelationship", + "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": "RequestHasSampleSamplesUpdateConnectionInput", + "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": "RequestHasSampleSamplesUpdateFieldInput", + "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": "RequestHasSampleSamplesConnectFieldInput", + "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": "RequestHasSampleSamplesCreateFieldInput", + "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": "RequestHasSampleSamplesDeleteFieldInput", + "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": "RequestHasSampleSamplesDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasSampleSamplesUpdateConnectionInput", + "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 + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadata", + "description": null, + "fields": [ + { + "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": "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 + }, + { + "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": "OBJECT", + "name": "RequestMetadataStatusHasStatusStatusesAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataHasStatusStatusesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "importDate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "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": "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": "OBJECT", + "name": "RequestMetadataRequestRequestsHasMetadataAggregationSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataAggregateSelection", + "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": "igoRequestId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "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 + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectInput", + "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": "RequestMetadataHasStatusStatusesConnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadata", + "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 + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataConnectWhere", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "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": "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": "RequestMetadataEdge", + "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": "RequestMetadataCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasStatusStatuses", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesFieldInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "igoRequestId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "importDate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestMetadataJson", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadata", + "description": null, + "type": { + "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": "hasStatusStatuses", + "description": null, + "type": { + "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": "requestsHasMetadata", + "description": null, + "type": { + "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": "hasStatusStatuses", + "description": null, + "type": { + "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": "requestsHasMetadata", + "description": null, + "type": { + "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": "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": "RequestMetadata", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesAggregateInput", + "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": "RequestMetadataHasStatusStatusesAggregateInput", + "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": "RequestMetadataHasStatusStatusesAggregateInput", + "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": "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": "connect", + "description": null, + "type": { + "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": "where", + "description": null, + "type": { + "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": "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": "RequestMetadataHasStatusStatusesRelationship", + "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": "RequestMetadataHasStatusStatusesConnectionSort", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "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": "AND", + "description": null, + "type": { + "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": "OR", + "description": null, + "type": { + "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": "node", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "node_NOT", + "description": null, + "type": { + "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": "node", + "description": null, + "type": { + "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": "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": "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": "disconnect", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "StatusDisconnectInput", + "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 + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesFieldInput", + "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": "RequestMetadataHasStatusStatusesConnectFieldInput", + "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": "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": "AND", + "description": null, + "type": { + "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": "OR", + "description": null, + "type": { + "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": "validationReport_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validationReport_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": "RequestMetadataHasStatusStatusesRelationship", + "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": "Status", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "node", + "description": null, + "type": { + "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": "connect", + "description": null, + "type": { + "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": "create", + "description": null, + "type": { + "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": "delete", + "description": null, + "type": { + "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": "disconnect", + "description": null, + "type": { + "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": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", + "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 + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataOptions", + "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 RequestMetadataSort objects to sort RequestMetadata 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": "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": "hasStatusStatuses", + "description": null, + "type": { + "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": "requestsHasMetadata", + "description": null, + "type": { + "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": "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": "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestMetadataRequestRequestsHasMetadataNodeAggregateSelection", + "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": "investigatorName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadEmail", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labHeadName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "libraryType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "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": "otherContactEmails", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestJson", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "smileRequestId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "strand", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StringAggregateSelectionNullable", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataAggregateInput", + "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": "RequestMetadataRequestsHasMetadataAggregateInput", + "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": "RequestMetadataRequestsHasMetadataAggregateInput", + "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": "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": "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": "RequestMetadataRequestsHasMetadataConnection", + "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": "RequestMetadataRequestsHasMetadataRelationship", + "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": "RequestMetadataRequestsHasMetadataConnectionSort", + "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": "RequestMetadataRequestsHasMetadataConnectionWhere", + "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": "RequestMetadataRequestsHasMetadataConnectionWhere", + "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": "RequestMetadataRequestsHasMetadataConnectionWhere", + "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": "RequestMetadataRequestsHasMetadataCreateFieldInput", + "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": "RequestMetadataRequestsHasMetadataDeleteFieldInput", + "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": "RequestMetadataRequestsHasMetadataConnectionWhere", + "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", + "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": "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": "create", + "description": null, + "type": { + "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": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", + "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": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", + "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": "RequestMetadataRequestsHasMetadataNodeAggregationWhereInput", + "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, + "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 + }, + { + "name": "otherContactEmails_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "otherContactEmails_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_LT", + "description": null, + "type": { + "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 + }, + { + "name": "piEmail_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "piEmail_SHORTEST_LTE", + "description": null, + "type": { + "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": "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": "projectManagerName_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectManagerName_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_AVERAGE_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_AVERAGE_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_AVERAGE_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_AVERAGE_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_AVERAGE_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_LONGEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_LONGEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_LONGEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_LONGEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_LONGEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_SHORTEST_EQUAL", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_SHORTEST_GT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_SHORTEST_GTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_SHORTEST_LT", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "qcAccessEmails_SHORTEST_LTE", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "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", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataWhere", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "requestJson_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": "RequestMetadataEdge", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "requestJson_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": "requestJson_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": "RequestMetadataCreateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "requestJson_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesFieldInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -20786,211 +28717,115 @@ "deprecationReason": null }, { - "name": "igoRequestId", + "name": "requestJson_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": "importDate", + "name": "requestJson_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": "requestMetadataJson", + "name": "requestJson_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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDeleteInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "requestJson_LONGEST_GT", "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataDisconnectInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "requestJson_LONGEST_GTE", "description": null, "type": { - "kind": "LIST", - "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataEdge", - "description": null, - "fields": [ + }, { - "name": "cursor", + "name": "requestJson_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": "requestJson_LONGEST_LTE", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RequestMetadata", - "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": "RequestMetadataHasStatusStatusesAggregateInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "requestJson_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "requestJson_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesAggregateInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "count", + "name": "requestJson_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21002,7 +28837,7 @@ "deprecationReason": null }, { - "name": "count_GT", + "name": "requestJson_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21014,7 +28849,7 @@ "deprecationReason": null }, { - "name": "count_GTE", + "name": "requestJson_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21026,7 +28861,7 @@ "deprecationReason": null }, { - "name": "count_LT", + "name": "requestJson_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21038,7 +28873,7 @@ "deprecationReason": null }, { - "name": "count_LTE", + "name": "requestJson_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21050,207 +28885,119 @@ "deprecationReason": null }, { - "name": "node", + "name": "smileRequestId_AVERAGE_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", + "kind": "SCALAR", + "name": "Float", "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": "connect", + "name": "smileRequestId_AVERAGE_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusConnectInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "smileRequestId_AVERAGE_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusConnectWhere", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RequestMetadataHasStatusStatusesConnection", - "description": null, - "fields": [ + }, { - "name": "edges", + "name": "smileRequestId_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": "RequestMetadataHasStatusStatusesRelationship", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "pageInfo", + "name": "smileRequestId_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": "smileRequestId_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": "RequestMetadataHasStatusStatusesConnectionSort", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "node", + "name": "smileRequestId_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusSort", + "kind": "SCALAR", + "name": "Int", "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": "AND", + "name": "smileRequestId_GTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "smileRequestId_LONGEST_EQUAL", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "node", + "name": "smileRequestId_LONGEST_GT", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -21258,61 +29005,35 @@ "deprecationReason": null }, { - "name": "node_NOT", + "name": "smileRequestId_LONGEST_GTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusWhere", + "kind": "SCALAR", + "name": "Int", "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": "node", + "name": "smileRequestId_LONGEST_LT", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StatusCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "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": "delete", + "name": "smileRequestId_LONGEST_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusDeleteInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -21320,34 +29041,23 @@ "deprecationReason": null }, { - "name": "where", + "name": "smileRequestId_LT", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "type": { + "kind": "SCALAR", + "name": "Int", "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": "disconnect", + "name": "smileRequestId_LTE", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "StatusDisconnectInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -21355,121 +29065,67 @@ "deprecationReason": null }, { - "name": "where", + "name": "smileRequestId_SHORTEST_EQUAL", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectionWhere", + "kind": "SCALAR", + "name": "Int", "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": "connect", + "name": "smileRequestId_SHORTEST_GT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectFieldInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "create", + "name": "smileRequestId_SHORTEST_GTE", "description": null, "type": { - "kind": "LIST", - "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "AND", + "name": "smileRequestId_SHORTEST_LT", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OR", + "name": "smileRequestId_SHORTEST_LTE", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesNodeAggregationWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "validationReport_AVERAGE_EQUAL", + "name": "strand_AVERAGE_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21481,7 +29137,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_GT", + "name": "strand_AVERAGE_GT", "description": null, "type": { "kind": "SCALAR", @@ -21493,7 +29149,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_GTE", + "name": "strand_AVERAGE_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21505,7 +29161,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_LT", + "name": "strand_AVERAGE_LT", "description": null, "type": { "kind": "SCALAR", @@ -21517,7 +29173,7 @@ "deprecationReason": null }, { - "name": "validationReport_AVERAGE_LTE", + "name": "strand_AVERAGE_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21529,7 +29185,7 @@ "deprecationReason": null }, { - "name": "validationReport_EQUAL", + "name": "strand_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21541,7 +29197,7 @@ "deprecationReason": null }, { - "name": "validationReport_GT", + "name": "strand_GT", "description": null, "type": { "kind": "SCALAR", @@ -21553,7 +29209,7 @@ "deprecationReason": null }, { - "name": "validationReport_GTE", + "name": "strand_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21565,7 +29221,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_EQUAL", + "name": "strand_LONGEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21577,7 +29233,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_GT", + "name": "strand_LONGEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21589,7 +29245,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_GTE", + "name": "strand_LONGEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21601,7 +29257,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_LT", + "name": "strand_LONGEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21613,7 +29269,7 @@ "deprecationReason": null }, { - "name": "validationReport_LONGEST_LTE", + "name": "strand_LONGEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21625,7 +29281,7 @@ "deprecationReason": null }, { - "name": "validationReport_LT", + "name": "strand_LT", "description": null, "type": { "kind": "SCALAR", @@ -21637,7 +29293,7 @@ "deprecationReason": null }, { - "name": "validationReport_LTE", + "name": "strand_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21649,7 +29305,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_EQUAL", + "name": "strand_SHORTEST_EQUAL", "description": null, "type": { "kind": "SCALAR", @@ -21661,7 +29317,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_GT", + "name": "strand_SHORTEST_GT", "description": null, "type": { "kind": "SCALAR", @@ -21673,7 +29329,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_GTE", + "name": "strand_SHORTEST_GTE", "description": null, "type": { "kind": "SCALAR", @@ -21685,7 +29341,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_LT", + "name": "strand_SHORTEST_LT", "description": null, "type": { "kind": "SCALAR", @@ -21697,7 +29353,7 @@ "deprecationReason": null }, { - "name": "validationReport_SHORTEST_LTE", + "name": "strand_SHORTEST_LTE", "description": null, "type": { "kind": "SCALAR", @@ -21715,7 +29371,7 @@ }, { "kind": "OBJECT", - "name": "RequestMetadataHasStatusStatusesRelationship", + "name": "RequestMetadataRequestsHasMetadataRelationship", "description": null, "fields": [ { @@ -21743,7 +29399,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Status", + "name": "Request", "ofType": null } }, @@ -21758,7 +29414,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", + "name": "RequestMetadataRequestsHasMetadataUpdateConnectionInput", "description": null, "fields": null, "inputFields": [ @@ -21767,7 +29423,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "StatusUpdateInput", + "name": "RequestUpdateInput", "ofType": null }, "defaultValue": null, @@ -21781,7 +29437,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesUpdateFieldInput", + "name": "RequestMetadataRequestsHasMetadataUpdateFieldInput", "description": null, "fields": null, "inputFields": [ @@ -21796,7 +29452,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesConnectFieldInput", + "name": "RequestMetadataRequestsHasMetadataConnectFieldInput", "ofType": null } } @@ -21816,117 +29472,18 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesCreateFieldInput", - "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": "RequestMetadataHasStatusStatusesDeleteFieldInput", - "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": "RequestMetadataHasStatusStatusesDisconnectFieldInput", + "name": "RequestMetadataRequestsHasMetadataCreateFieldInput", "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "update", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesUpdateConnectionInput", - "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 - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataOptions", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "offset", + "name": "delete", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "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.", "type": { "kind": "LIST", "name": null, @@ -21935,7 +29492,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataSort", + "name": "RequestMetadataRequestsHasMetadataDeleteFieldInput", "ofType": null } } @@ -21943,20 +29500,9 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RequestMetadataRelationInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "hasStatusStatuses", + "name": "disconnect", "description": null, "type": { "kind": "LIST", @@ -21966,7 +29512,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestMetadataHasStatusStatusesCreateFieldInput", + "name": "RequestMetadataRequestsHasMetadataDisconnectFieldInput", "ofType": null } } @@ -21974,6 +29520,30 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataUpdateConnectionInput", + "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 } ], "interfaces": null, @@ -22154,6 +29724,26 @@ "defaultValue": null, "isDeprecated": false, "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, @@ -22721,6 +30311,114 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "requestsHasMetadataAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadataConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadataConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadataConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadataConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataRequestsHasMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadata_ALL", + "description": "Return RequestMetadata where all of the related Requests match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestsHasMetadata_NONE", + "description": "Return RequestMetadata where none of the related Requests match this filter", + "type": { + "kind": "INPUT_OBJECT", + "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, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -23987,7 +31685,102 @@ "deprecationReason": null }, { - "name": "delete", + "name": "delete", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestDeleteFieldInput", + "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": "RequestProjectsHasRequestDisconnectFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "update", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestProjectsHasRequestUpdateConnectionInput", + "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": "RequestRelationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hasMetadataRequestMetadata", + "description": null, + "type": { + "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": "hasSampleSamples", "description": null, "type": { "kind": "LIST", @@ -23997,7 +31790,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDeleteFieldInput", + "name": "RequestHasSampleSamplesCreateFieldInput", "ofType": null } } @@ -24007,7 +31800,7 @@ "deprecationReason": null }, { - "name": "disconnect", + "name": "projectsHasRequest", "description": null, "type": { "kind": "LIST", @@ -24017,7 +31810,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestDisconnectFieldInput", + "name": "RequestProjectsHasRequestCreateFieldInput", "ofType": null } } @@ -24025,84 +31818,107 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataAggregationSelection", + "description": null, + "fields": [ { - "name": "update", + "name": "count", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestUpdateConnectionInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "where", + "name": "node", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestConnectionWhere", + "kind": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "RequestRelationInput", + "kind": "OBJECT", + "name": "RequestRequestMetadataHasMetadataRequestMetadataNodeAggregateSelection", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "hasSampleSamples", + "name": "igoRequestId", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestHasSampleSamplesCreateFieldInput", - "ofType": null - } + "kind": "OBJECT", + "name": "StringAggregateSelectionNonNullable", + "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "projectsHasRequest", + "name": "importDate", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RequestProjectsHasRequestCreateFieldInput", - "ofType": null - } + "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 }, @@ -24454,18 +32270,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "revisable", - "description": null, - "type": { - "kind": "ENUM", - "name": "SortDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "smileRequestId", "description": null, @@ -24561,6 +32365,26 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "hasMetadataRequestMetadata", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataUpdateFieldInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "hasSampleSamples", "description": null, @@ -24813,18 +32637,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "revisable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "smileRequestId", "description": null, @@ -25468,6 +33280,114 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "hasMetadataRequestMetadataAggregate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataAggregateInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadataConnection_ALL", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadataConnection_NONE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadataConnection_SINGLE", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadataConnection_SOME", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestHasMetadataRequestMetadataConnectionWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadata_ALL", + "description": "Return Requests where all of the related RequestMetadata match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadata_NONE", + "description": "Return Requests where none of the related RequestMetadata match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadata_SINGLE", + "description": "Return Requests where one of the related RequestMetadata match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasMetadataRequestMetadata_SOME", + "description": "Return Requests where some of the related RequestMetadata match this filter", + "type": { + "kind": "INPUT_OBJECT", + "name": "RequestMetadataWhere", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "hasSampleSamplesAggregate", "description": null, @@ -27524,30 +35444,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "revisable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "revisable_NOT", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "smileRequestId", "description": null, diff --git a/graphql/operations.graphql b/graphql/operations.graphql index fa7d097a..3b4d00fa 100644 --- a/graphql/operations.graphql +++ b/graphql/operations.graphql @@ -32,6 +32,7 @@ query PatientsList( hasMetadataSampleMetadata { primaryId cmoSampleName + additionalProperties } } hasSampleSamplesConnection {