Skip to content

Commit

Permalink
fix: update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dleard committed Jan 29, 2021
1 parent 0d1a57a commit e540db0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 365 deletions.
79 changes: 0 additions & 79 deletions app/server/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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."""
Expand Down
286 changes: 0 additions & 286 deletions app/server/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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`.",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit e540db0

Please sign in to comment.