From 3a9654a1a993729275ab4cfc3d627dd7430aa8e3 Mon Sep 17 00:00:00 2001 From: Pierre Bastianelli Date: Thu, 18 Mar 2021 16:52:43 -0700 Subject: [PATCH] feat: updating schema definition --- app/server/schema.graphql | 403 --------- app/server/schema.json | 1690 ++++--------------------------------- 2 files changed, 145 insertions(+), 1948 deletions(-) diff --git a/app/server/schema.graphql b/app/server/schema.graphql index 839ffb9ce6..e835c11c97 100644 --- a/app/server/schema.graphql +++ b/app/server/schema.graphql @@ -114,40 +114,6 @@ type Application implements Node { orderBy: [CertificationUrlsOrderBy!] = [PRIMARY_KEY_ASC] ): CertificationUrlsConnection! - """Reads and enables pagination through a set of `CertificationUrl`.""" - certificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: CertificationUrlCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: CertificationUrlFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `CertificationUrl`.""" - orderBy: [CertificationUrlsOrderBy!] = [PRIMARY_KEY_ASC] - ): ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyConnection! - """Reads and enables pagination through a set of `CiipUser`.""" ciipUsersByApplicationReviewStepApplicationIdAndUpdatedBy( """Read all values in the set after (below) this cursor.""" @@ -998,67 +964,6 @@ type Application implements Node { submissionDate: Datetime } -""" -A connection to a list of `CertificationUrl` values, with data from `SearchCertificationUrlResult`. -""" -type ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyConnection { - """ - A list of edges which contains the `CertificationUrl`, info from the - `SearchCertificationUrlResult`, and the cursor to aid in pagination. - """ - edges: [ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyEdge!]! - - """A list of `CertificationUrl` objects.""" - nodes: [CertificationUrl]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `CertificationUrl` you could get from the connection. - """ - totalCount: Int! -} - -""" -A `CertificationUrl` edge in the connection, with data from `SearchCertificationUrlResult`. -""" -type ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CertificationUrl` at the end of the edge.""" - node: CertificationUrl - - """ - Reads and enables pagination through a set of `SearchCertificationUrlResult`. - """ - searchCertificationUrlResultsByCertificationUrlId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SearchCertificationUrlResultFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - ): SearchCertificationUrlResultsConnection! -} - """ A connection to a list of `CiipUser` values, with data from `ApplicationReviewStep`. """ @@ -2648,16 +2553,6 @@ type ApplicationRevision implements Node { orderBy: [ApplicationRevisionStatusesOrderBy!] = [PRIMARY_KEY_ASC] ): ApplicationRevisionStatusesConnection! - """ - Computed column for graphql to traverse to show if a signature is valid from application_revision - """ - certificationSignatureIsValid: Boolean - - """ - Computed column for graphql to traverse to a certification_url row from application_revision - """ - certificationUrl: CertificationUrl - """Reads and enables pagination through a set of `CertificationUrl`.""" certificationUrlsByApplicationIdAndVersionNumber( """Read all values in the set after (below) this cursor.""" @@ -2862,9 +2757,6 @@ input ApplicationRevisionFilter { """Filter by the object’s `applicationId` field.""" applicationId: IntFilter - """Filter by the object’s `certificationSignatureIsValid` field.""" - certificationSignatureIsValid: BooleanFilter - """Filter by the object’s `createdAt` field.""" createdAt: DatetimeFilter @@ -3743,55 +3635,6 @@ input BigFloatFilter { notIn: [BigFloat!] } -""" -A signed eight-byte integer. The upper big integer values are greater than the -max value for a JavaScript number. Therefore all big integers will be output as -strings and not numbers. -""" -scalar BigInt - -""" -A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ -""" -input BigIntFilter { - """ - Not equal to the specified value, treating null like an ordinary value. - """ - distinctFrom: BigInt - - """Equal to the specified value.""" - equalTo: BigInt - - """Greater than the specified value.""" - greaterThan: BigInt - - """Greater than or equal to the specified value.""" - greaterThanOrEqualTo: BigInt - - """Included in the specified list.""" - in: [BigInt!] - - """ - Is null (if `true` is specified) or is not null (if `false` is specified). - """ - isNull: Boolean - - """Less than the specified value.""" - lessThan: BigInt - - """Less than or equal to the specified value.""" - lessThanOrEqualTo: BigInt - - """Equal to the specified value, treating null like an ordinary value.""" - notDistinctFrom: BigInt - - """Not equal to the specified value.""" - notEqualTo: BigInt - - """Not included in the specified list.""" - notIn: [BigInt!] -} - """ A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ """ @@ -3924,40 +3767,6 @@ type CertificationUrl implements Node { """ applicationRevisionByApplicationIdAndVersionNumber: ApplicationRevision - """Reads and enables pagination through a set of `Application`.""" - applicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A condition to be used in determining which values should be returned by the collection. - """ - condition: ApplicationCondition - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: ApplicationFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - - """The method to use when ordering `Application`.""" - orderBy: [ApplicationsOrderBy!] = [PRIMARY_KEY_ASC] - ): CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyConnection! - """The time at which the certification request was sent""" certificationRequestSentAt: Datetime @@ -4006,12 +3815,6 @@ type CertificationUrl implements Node { """The hash of all form results at the time the signature was added""" formResultsMd5: String - """ - Computed column for graphql to traverse to show if the current hash of form - results matches the form_results_md5 in certification_url - """ - hashMatches: Boolean - """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ @@ -4042,65 +3845,6 @@ type CertificationUrl implements Node { versionNumber: Int! } -""" -A connection to a list of `Application` values, with data from `SearchCertificationUrlResult`. -""" -type CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyConnection { - """ - A list of edges which contains the `Application`, info from the - `SearchCertificationUrlResult`, and the cursor to aid in pagination. - """ - edges: [CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyEdge!]! - - """A list of `Application` objects.""" - nodes: [Application]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """The count of *all* `Application` you could get from the connection.""" - totalCount: Int! -} - -""" -A `Application` edge in the connection, with data from `SearchCertificationUrlResult`. -""" -type CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `Application` at the end of the edge.""" - node: Application - - """ - Reads and enables pagination through a set of `SearchCertificationUrlResult`. - """ - searchCertificationUrlResultsByApplicationId( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SearchCertificationUrlResultFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - ): SearchCertificationUrlResultsConnection! -} - """ A condition to be used against `CertificationUrl` object types. All fields are tested for equality and combined with a logical ‘and.’ @@ -4210,9 +3954,6 @@ input CertificationUrlFilter { """Filter by the object’s `expiresAt` field.""" expiresAt: DatetimeFilter - """Filter by the object’s `hashMatches` field.""" - hashMatches: BooleanFilter - """Negates the expression.""" not: CertificationUrlFilter @@ -10586,11 +10327,6 @@ type CiipUser implements Node { orderBy: [GasesOrderBy!] = [PRIMARY_KEY_ASC] ): GasesConnection! - """ - Computed column true if the user has certification requests attached to their email - """ - hasCertificationRequests: Boolean - """ A globally unique identifier. Can be used in various places throughout the system to identify this single value. """ @@ -19839,9 +19575,6 @@ input CiipUserFilter { """Filter by the object’s `firstName` field.""" firstName: StringFilter - """Filter by the object’s `hasCertificationRequests` field.""" - hasCertificationRequests: BooleanFilter - """Filter by the object’s `lastName` field.""" lastName: StringFilter @@ -35943,40 +35676,6 @@ type Query implements Node { reviewStepByRowId(rowId: Int!): ReviewStep reviewStepByStepName(stepName: String!): ReviewStep - """ - Search function returns data related to certification requests associated with the current user - """ - searchCertificationRequests( - """Read all values in the set after (below) this cursor.""" - after: Cursor - - """Read all values in the set before (above) this cursor.""" - before: Cursor - direction: String - - """ - A filter to be used in determining which values should be returned by the collection. - """ - filter: SearchCertificationUrlResultFilter - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: Int - maxResultsPerPage: Int - - """ - Skip the first `n` values from our `after` cursor, an alternative to cursor - based pagination. May not be used with `last`. - """ - offset: Int - offsetValue: Int - orderByField: String - searchField: [String] - searchValue: [String] - ): SearchCertificationUrlResultsConnection! - """Reads and enables pagination through a set of `Facility`.""" searchOrganisationFacilities( """Read all values in the set after (below) this cursor.""" @@ -38026,108 +37725,6 @@ enum ReviewStepsOrderBy { STEP_NAME_DESC } -type SearchCertificationUrlResult { - """ - Reads a single `Application` that is related to this `SearchCertificationUrlResult`. - """ - applicationByApplicationId: Application - applicationId: Int - applicationRevisionStatus: CiipApplicationRevisionStatus - - """ - Reads a single `CertificationUrl` that is related to this `SearchCertificationUrlResult`. - """ - certificationUrlByCertificationUrlId: CertificationUrl - certificationUrlId: String - certifiedAt: Datetime - certifiedByFirstName: String - certifiedByLastName: String - certifierEmail: String - facilityName: String - operatorName: String - rowId: BigInt - totalRequestCount: Int - versionNumber: Int -} - -""" -A filter to be used against `SearchCertificationUrlResult` object types. All fields are combined with a logical ‘and.’ -""" -input SearchCertificationUrlResultFilter { - """Checks for all expressions in this list.""" - and: [SearchCertificationUrlResultFilter!] - - """Filter by the object’s `applicationId` field.""" - applicationId: IntFilter - - """Filter by the object’s `applicationRevisionStatus` field.""" - applicationRevisionStatus: CiipApplicationRevisionStatusFilter - - """Filter by the object’s `certificationUrlId` field.""" - certificationUrlId: StringFilter - - """Filter by the object’s `certifiedAt` field.""" - certifiedAt: DatetimeFilter - - """Filter by the object’s `certifiedByFirstName` field.""" - certifiedByFirstName: StringFilter - - """Filter by the object’s `certifiedByLastName` field.""" - certifiedByLastName: StringFilter - - """Filter by the object’s `certifierEmail` field.""" - certifierEmail: StringFilter - - """Filter by the object’s `facilityName` field.""" - facilityName: StringFilter - - """Negates the expression.""" - not: SearchCertificationUrlResultFilter - - """Filter by the object’s `operatorName` field.""" - operatorName: StringFilter - - """Checks for any expressions in this list.""" - or: [SearchCertificationUrlResultFilter!] - - """Filter by the object’s `rowId` field.""" - rowId: BigIntFilter - - """Filter by the object’s `totalRequestCount` field.""" - totalRequestCount: IntFilter - - """Filter by the object’s `versionNumber` field.""" - versionNumber: IntFilter -} - -"""A connection to a list of `SearchCertificationUrlResult` values.""" -type SearchCertificationUrlResultsConnection { - """ - A list of edges which contains the `SearchCertificationUrlResult` and cursor to aid in pagination. - """ - edges: [SearchCertificationUrlResultsEdge!]! - - """A list of `SearchCertificationUrlResult` objects.""" - nodes: [SearchCertificationUrlResult]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `SearchCertificationUrlResult` you could get from the connection. - """ - totalCount: Int! -} - -"""A `SearchCertificationUrlResult` edge in the connection.""" -type SearchCertificationUrlResultsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `SearchCertificationUrlResult` at the end of the edge.""" - node: SearchCertificationUrlResult -} - """ A filter to be used against String fields. All fields are combined with a logical ‘and.’ """ diff --git a/app/server/schema.json b/app/server/schema.json index 2c8eb6132d..b8033314b1 100644 --- a/app/server/schema.json +++ b/app/server/schema.json @@ -4471,151 +4471,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "searchCertificationRequests", - "description": "Search function returns data related to certification requests associated with the current user", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "direction", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SearchCertificationUrlResultFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "maxResultsPerPage", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offsetValue", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderByField", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchField", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "searchValue", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SearchCertificationUrlResultsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "searchOrganisationFacilities", "description": "Reads and enables pagination through a set of `Facility`.", @@ -6327,111 +6182,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "certificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlId", - "description": "Reads and enables pagination through a set of `CertificationUrl`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertificationUrlCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertificationUrlFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CertificationUrl`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertificationUrlsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "ciipUsersByApplicationReviewStepApplicationIdAndUpdatedBy", "description": "Reads and enables pagination through a set of `CiipUser`.", @@ -9193,30 +8943,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "certificationSignatureIsValid", - "description": "Computed column for graphql to traverse to show if a signature is valid from application_revision", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "certificationUrl", - "description": "Computed column for graphql to traverse to a certification_url row from application_revision", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CertificationUrl", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "certificationUrlsByApplicationIdAndVersionNumber", "description": "Reads and enables pagination through a set of `CertificationUrl`.", @@ -26363,7 +26089,27 @@ "name": null, "ofType": { "kind": "OBJECT", +<<<<<<< HEAD "name": "FormResultsConnection", +======= + "name": "GasesConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", +>>>>>>> baf059cc (feat: updating schema definition) "ofType": null } }, @@ -30238,6 +29984,7 @@ "defaultValue": "[PRIMARY_KEY_ASC]" } ], +<<<<<<< HEAD ======= "name": "certificationSignatureIsValid", "description": "Filter by the object’s `certificationSignatureIsValid` field.", @@ -30247,6 +29994,19 @@ "ofType": null }, "defaultValue": null +======= + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CiipUserProductsByBenchmarkCreatedByAndProductIdManyToManyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null +>>>>>>> baf059cc (feat: updating schema definition) }, { "name": "createdAt", @@ -50466,16 +50226,6 @@ }, "defaultValue": null }, - { - "name": "hashMatches", - "description": "Filter by the object’s `hashMatches` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "not", "description": "Negates the expression.", @@ -50865,111 +50615,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "applicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationId", - "description": "Reads and enables pagination through a set of `Application`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ApplicationCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `Application`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ApplicationsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "certificationRequestSentAt", "description": "The time at which the certification request was sent", @@ -51174,18 +50819,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "hashMatches", - "description": "Computed column for graphql to traverse to show if the current hash of form results matches the form_results_md5 in certification_url", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "id", "description": "A globally unique identifier. Can be used in various places throughout the system to identify this single value.", @@ -51284,12 +50917,12 @@ }, { "kind": "OBJECT", - "name": "CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyConnection", - "description": "A connection to a list of `Application` values, with data from `SearchCertificationUrlResult`.", + "name": "CiipUserApplicationsByCertificationUrlCreatedByAndApplicationIdManyToManyConnection", + "description": "A connection to a list of `Application` values, with data from `CertificationUrl`.", "fields": [ { "name": "edges", - "description": "A list of edges which contains the `Application`, info from the `SearchCertificationUrlResult`, and the cursor to aid in pagination.", + "description": "A list of edges which contains the `Application`, info from the `CertificationUrl`, and the cursor to aid in pagination.", "args": [], "type": { "kind": "NON_NULL", @@ -51302,7 +50935,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyEdge", + "name": "CiipUserApplicationsByCertificationUrlCreatedByAndApplicationIdManyToManyEdge", "ofType": null } } @@ -51371,938 +51004,114 @@ }, { "kind": "OBJECT", - "name": "CertificationUrlApplicationsBySearchCertificationUrlResultCertificationUrlIdAndApplicationIdManyToManyEdge", - "description": "A `Application` edge in the connection, with data from `SearchCertificationUrlResult`.", + "name": "CiipUserApplicationsByCertificationUrlCreatedByAndApplicationIdManyToManyEdge", + "description": "A `Application` edge in the connection, with data from `CertificationUrl`.", "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `Application` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchCertificationUrlResultsByApplicationId", - "description": "Reads and enables pagination through a set of `SearchCertificationUrlResult`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SearchCertificationUrlResultFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SearchCertificationUrlResultsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SearchCertificationUrlResultFilter", - "description": "A filter to be used against `SearchCertificationUrlResult` object types. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "and", - "description": "Checks for all expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SearchCertificationUrlResultFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "applicationId", - "description": "Filter by the object’s `applicationId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "applicationRevisionStatus", - "description": "Filter by the object’s `applicationRevisionStatus` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CiipApplicationRevisionStatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "certificationUrlId", - "description": "Filter by the object’s `certificationUrlId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "certifiedAt", - "description": "Filter by the object’s `certifiedAt` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "DatetimeFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "certifiedByFirstName", - "description": "Filter by the object’s `certifiedByFirstName` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "certifiedByLastName", - "description": "Filter by the object’s `certifiedByLastName` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "certifierEmail", - "description": "Filter by the object’s `certifierEmail` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "facilityName", - "description": "Filter by the object’s `facilityName` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "not", - "description": "Negates the expression.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SearchCertificationUrlResultFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "operatorName", - "description": "Filter by the object’s `operatorName` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "StringFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "or", - "description": "Checks for any expressions in this list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SearchCertificationUrlResultFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "rowId", - "description": "Filter by the object’s `rowId` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BigIntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "totalRequestCount", - "description": "Filter by the object’s `totalRequestCount` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "versionNumber", - "description": "Filter by the object’s `versionNumber` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "IntFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BigIntFilter", - "description": "A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "distinctFrom", - "description": "Not equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "equalTo", - "description": "Equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "greaterThan", - "description": "Greater than the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "greaterThanOrEqualTo", - "description": "Greater than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "in", - "description": "Included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isNull", - "description": "Is null (if `true` is specified) or is not null (if `false` is specified).", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lessThan", - "description": "Less than the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lessThanOrEqualTo", - "description": "Less than or equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "notDistinctFrom", - "description": "Equal to the specified value, treating null like an ordinary value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "notEqualTo", - "description": "Not equal to the specified value.", - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "notIn", - "description": "Not included in the specified list.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "BigInt", - "description": "A signed eight-byte integer. The upper big integer values are greater than the max value for a JavaScript number. Therefore all big integers will be output as strings and not numbers.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SearchCertificationUrlResultsConnection", - "description": "A connection to a list of `SearchCertificationUrlResult` values.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `SearchCertificationUrlResult` and cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SearchCertificationUrlResultsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `SearchCertificationUrlResult` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SearchCertificationUrlResult", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `SearchCertificationUrlResult` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SearchCertificationUrlResultsEdge", - "description": "A `SearchCertificationUrlResult` edge in the connection.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `SearchCertificationUrlResult` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SearchCertificationUrlResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SearchCertificationUrlResult", - "description": "", - "fields": [ - { - "name": "applicationByApplicationId", - "description": "Reads a single `Application` that is related to this `SearchCertificationUrlResult`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "applicationId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "applicationRevisionStatus", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CiipApplicationRevisionStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "certificationUrlByCertificationUrlId", - "description": "Reads a single `CertificationUrl` that is related to this `SearchCertificationUrlResult`.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CertificationUrl", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "certificationUrlId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "certifiedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Datetime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "certifiedByFirstName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "certifiedByLastName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "certifierEmail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "facilityName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "operatorName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rowId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalRequestCount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versionNumber", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CiipUserApplicationsByCertificationUrlCreatedByAndApplicationIdManyToManyConnection", - "description": "A connection to a list of `Application` values, with data from `CertificationUrl`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `Application`, info from the `CertificationUrl`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CiipUserApplicationsByCertificationUrlCreatedByAndApplicationIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `Application` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `Application` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CiipUserApplicationsByCertificationUrlCreatedByAndApplicationIdManyToManyEdge", - "description": "A `Application` edge in the connection, with data from `CertificationUrl`.", - "fields": [ - { - "name": "certificationUrlsByApplicationId", - "description": "Reads and enables pagination through a set of `CertificationUrl`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": "A condition to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertificationUrlCondition", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertificationUrlFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "The method to use when ordering `CertificationUrl`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertificationUrlsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[PRIMARY_KEY_ASC]" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertificationUrlsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + { + "name": "certificationUrlsByApplicationId", + "description": "Reads and enables pagination through a set of `CertificationUrl`.", + "args": [ + { + "name": "after", + "description": "Read all values in the set after (below) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "Read all values in the set before (above) this cursor.", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": "A condition to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertificationUrlCondition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "A filter to be used in determining which values should be returned by the collection.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertificationUrlFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "Only read the first `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "Only read the last `n` values of the set.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "The method to use when ordering `CertificationUrl`.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertificationUrlsOrderBy", + "ofType": null + } + } + }, + "defaultValue": "[PRIMARY_KEY_ASC]" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertificationUrlsConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "cursor", "description": "A cursor for use in pagination.", @@ -57759,16 +56568,6 @@ }, "defaultValue": null }, - { - "name": "hasCertificationRequests", - "description": "Filter by the object’s `hasCertificationRequests` field.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BooleanFilter", - "ofType": null - }, - "defaultValue": null - }, { "name": "lastName", "description": "Filter by the object’s `lastName` field.", @@ -112992,205 +111791,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyConnection", - "description": "A connection to a list of `CertificationUrl` values, with data from `SearchCertificationUrlResult`.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CertificationUrl`, info from the `SearchCertificationUrlResult`, and the cursor to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CertificationUrl` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertificationUrl", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageInfo", - "description": "Information to aid in pagination.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalCount", - "description": "The count of *all* `CertificationUrl` you could get from the connection.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ApplicationCertificationUrlsBySearchCertificationUrlResultApplicationIdAndCertificationUrlIdManyToManyEdge", - "description": "A `CertificationUrl` edge in the connection, with data from `SearchCertificationUrlResult`.", - "fields": [ - { - "name": "cursor", - "description": "A cursor for use in pagination.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "node", - "description": "The `CertificationUrl` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CertificationUrl", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchCertificationUrlResultsByCertificationUrlId", - "description": "Reads and enables pagination through a set of `SearchCertificationUrlResult`.", - "args": [ - { - "name": "after", - "description": "Read all values in the set after (below) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "Read all values in the set before (above) this cursor.", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "filter", - "description": "A filter to be used in determining which values should be returned by the collection.", - "type": { - "kind": "INPUT_OBJECT", - "name": "SearchCertificationUrlResultFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "Only read the first `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "Only read the last `n` values of the set.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SearchCertificationUrlResultsConnection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", "name": "ApplicationCiipUsersByApplicationReviewStepApplicationIdAndUpdatedByManyToManyConnection",