add createStakeRemoveMutation
This commit is contained in:
33
app/javascript/__generated__/schema.graphql
generated
33
app/javascript/__generated__/schema.graphql
generated
@@ -180,6 +180,33 @@ type CreateStakeOrderPayload {
|
||||
order: StakeOrder
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of CreateStakeRemoveOrder
|
||||
"""
|
||||
input CreateStakeRemoveOrderInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
order: CreateStakeOrderAttributesInput!
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of CreateStakeRemoveOrder
|
||||
"""
|
||||
type CreateStakeRemoveOrderPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
Errors encountered during execution of the mutation.
|
||||
"""
|
||||
errors: [RecordInvalid!]
|
||||
order: StakeOrder
|
||||
}
|
||||
|
||||
type Currency implements Node {
|
||||
id: ID!
|
||||
name: String!
|
||||
@@ -245,6 +272,12 @@ type Mutation {
|
||||
"""
|
||||
input: CreateStakeOrderInput!
|
||||
): CreateStakeOrderPayload
|
||||
createStakeRemoveOrder(
|
||||
"""
|
||||
Parameters for CreateStakeRemoveOrder
|
||||
"""
|
||||
input: CreateStakeRemoveOrderInput!
|
||||
): CreateStakeRemoveOrderPayload
|
||||
}
|
||||
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user