diff --git a/app/server/schema.graphql b/app/server/schema.graphql index 4448c56d65..eb8d92fdfc 100644 --- a/app/server/schema.graphql +++ b/app/server/schema.graphql @@ -1921,54 +1921,6 @@ enum CiipCarbonTaxCalculationsOrderBy { VERSION_NUMBER_DESC } -type CiipCarbonTaxCalculator { - column: String -} - -""" -A condition to be used against `CiipCarbonTaxCalculator` object types. All -fields are tested for equality and combined with a logical ‘and.’ -""" -input CiipCarbonTaxCalculatorCondition { - """Checks for equality with the object’s `column` field.""" - column: String -} - -"""A connection to a list of `CiipCarbonTaxCalculator` values.""" -type CiipCarbonTaxCalculatorsConnection { - """ - A list of edges which contains the `CiipCarbonTaxCalculator` and cursor to aid in pagination. - """ - edges: [CiipCarbonTaxCalculatorsEdge!]! - - """A list of `CiipCarbonTaxCalculator` objects.""" - nodes: [CiipCarbonTaxCalculator]! - - """Information to aid in pagination.""" - pageInfo: PageInfo! - - """ - The count of *all* `CiipCarbonTaxCalculator` you could get from the connection. - """ - totalCount: Int! -} - -"""A `CiipCarbonTaxCalculator` edge in the connection.""" -type CiipCarbonTaxCalculatorsEdge { - """A cursor for use in pagination.""" - cursor: Cursor - - """The `CiipCarbonTaxCalculator` at the end of the edge.""" - node: CiipCarbonTaxCalculator -} - -"""Methods to use when ordering `CiipCarbonTaxCalculator`.""" -enum CiipCarbonTaxCalculatorsOrderBy { - COLUMN_ASC - COLUMN_DESC - NATURAL -} - enum CiipFormResultStatus { APPROVED CHANGES_REQUESTED @@ -10832,37 +10784,6 @@ type Query implements Node { orderBy: [CiipCarbonTaxCalculationsOrderBy!] = [NATURAL] ): CiipCarbonTaxCalculationsConnection - """ - Reads and enables pagination through a set of `CiipCarbonTaxCalculator`. - """ - allCiipCarbonTaxCalculators( - """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: CiipCarbonTaxCalculatorCondition - - """Only read the first `n` values of the set.""" - first: Int - - """Only read the last `n` values of the set.""" - last: 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 `CiipCarbonTaxCalculator`.""" - orderBy: [CiipCarbonTaxCalculatorsOrderBy!] = [NATURAL] - ): CiipCarbonTaxCalculatorsConnection - """Reads and enables pagination through a set of `CiipUserOrganisation`.""" allCiipUserOrganisations( """Read all values in the set after (below) this cursor.""" diff --git a/app/server/schema.json b/app/server/schema.json index ac60b37449..2043d2d7e8 100644 --- a/app/server/schema.json +++ b/app/server/schema.json @@ -651,97 +651,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "allCiipCarbonTaxCalculators", - "description": "Reads and enables pagination through a set of `CiipCarbonTaxCalculator`.", - "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": "CiipCarbonTaxCalculatorCondition", - "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 `CiipCarbonTaxCalculator`.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CiipCarbonTaxCalculatorsOrderBy", - "ofType": null - } - } - }, - "defaultValue": "[NATURAL]" - } - ], - "type": { - "kind": "OBJECT", - "name": "CiipCarbonTaxCalculatorsConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "allCiipUserOrganisations", "description": "Reads and enables pagination through a set of `CiipUserOrganisation`.", @@ -25519,201 +25428,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "CiipCarbonTaxCalculatorCondition", - "description": "A condition to be used against `CiipCarbonTaxCalculator` object types. All fields are tested for equality and combined with a logical ‘and.’", - "fields": null, - "inputFields": [ - { - "name": "column", - "description": "Checks for equality with the object’s `column` field.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CiipCarbonTaxCalculatorsOrderBy", - "description": "Methods to use when ordering `CiipCarbonTaxCalculator`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "COLUMN_ASC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "COLUMN_DESC", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NATURAL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CiipCarbonTaxCalculatorsConnection", - "description": "A connection to a list of `CiipCarbonTaxCalculator` values.", - "fields": [ - { - "name": "edges", - "description": "A list of edges which contains the `CiipCarbonTaxCalculator` 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": "CiipCarbonTaxCalculatorsEdge", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": "A list of `CiipCarbonTaxCalculator` objects.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CiipCarbonTaxCalculator", - "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* `CiipCarbonTaxCalculator` 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": "CiipCarbonTaxCalculatorsEdge", - "description": "A `CiipCarbonTaxCalculator` 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 `CiipCarbonTaxCalculator` at the end of the edge.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CiipCarbonTaxCalculator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CiipCarbonTaxCalculator", - "description": null, - "fields": [ - { - "name": "column", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "OrganisationCondition",