Skip to content

Commit

Permalink
chore: update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
AntBush committed Jun 5, 2024
1 parent 987d82f commit 29ad340
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -46557,13 +46557,20 @@ type CbcDataChangeReasonsConnection {
totalCount: Int!
}

"""Table containing the reasons for changes to cbc_data"""
type CbcDataChangeReason implements Node {
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
id: ID!

"""Unique ID for the cbc_data_change_reason"""
rowId: Int!

"""ID of the cbc_data this cbc_data_change_reason belongs to"""
cbcDataId: Int!

"""The reason for the change to the cbc_data"""
description: String

"""created by user id"""
Expand Down Expand Up @@ -75874,8 +75881,13 @@ input CreateCbcDataChangeReasonInput {

"""An input for mutations affecting `CbcDataChangeReason`"""
input CbcDataChangeReasonInput {
"""Unique ID for the cbc_data_change_reason"""
rowId: Int

"""ID of the cbc_data this cbc_data_change_reason belongs to"""
cbcDataId: Int!

"""The reason for the change to the cbc_data"""
description: String

"""created by user id"""
Expand Down Expand Up @@ -80327,8 +80339,13 @@ input UpdateCbcDataChangeReasonInput {
Represents an update to a `CbcDataChangeReason`. Fields that are set will be updated.
"""
input CbcDataChangeReasonPatch {
"""Unique ID for the cbc_data_change_reason"""
rowId: Int

"""ID of the cbc_data this cbc_data_change_reason belongs to"""
cbcDataId: Int

"""The reason for the change to the cbc_data"""
description: String

"""created by user id"""
Expand Down Expand Up @@ -80362,6 +80379,8 @@ input UpdateCbcDataChangeReasonByRowIdInput {
An object where the defined keys will be set on the `CbcDataChangeReason` being updated.
"""
cbcDataChangeReasonPatch: CbcDataChangeReasonPatch!

"""Unique ID for the cbc_data_change_reason"""
rowId: Int!
}

Expand Down Expand Up @@ -83597,6 +83616,8 @@ input DeleteCbcDataChangeReasonByRowIdInput {
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String

"""Unique ID for the cbc_data_change_reason"""
rowId: Int!
}

Expand Down

0 comments on commit 29ad340

Please sign in to comment.