add commitCreateStakeRemoveRequestMutation

This commit is contained in:
João Geonizeli
2021-08-28 00:28:29 -03:00
parent 3967e182cf
commit 5a3bae9c65
25 changed files with 599 additions and 120 deletions

View File

@@ -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!