add commitCreateStakeRemoveRequestMutation
This commit is contained in:
20
app/javascript/__generated__/schema.graphql
generated
20
app/javascript/__generated__/schema.graphql
generated
@@ -149,7 +149,6 @@ input CreateStakeOrderAttributesInput {
|
||||
Amount to be paid
|
||||
"""
|
||||
amount: String!
|
||||
currencyId: ID!
|
||||
poolName: String!
|
||||
}
|
||||
|
||||
@@ -315,6 +314,18 @@ type PageInfo {
|
||||
startCursor: String
|
||||
}
|
||||
|
||||
input PredicateInput {
|
||||
"""
|
||||
Equal
|
||||
"""
|
||||
eq: String
|
||||
|
||||
"""
|
||||
Less than
|
||||
"""
|
||||
lt: Float
|
||||
}
|
||||
|
||||
enum ProcessStatus {
|
||||
CANCELED
|
||||
COMPLETED
|
||||
@@ -437,6 +448,7 @@ type Query {
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
filter: StakeOrderFilterInput
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
@@ -536,6 +548,12 @@ type StakeOrderEdge {
|
||||
node: StakeOrder!
|
||||
}
|
||||
|
||||
input StakeOrderFilterInput {
|
||||
amount: PredicateInput
|
||||
poolName: PredicateInput
|
||||
status: [ProcessStatus!]
|
||||
}
|
||||
|
||||
type User {
|
||||
email: String!
|
||||
firstName: String!
|
||||
|
||||
Reference in New Issue
Block a user