add status filter to DespositOrder

This commit is contained in:
João Geonizeli
2021-09-05 21:25:25 -03:00
parent c4e6807d61
commit 1decb1a2b8
3 changed files with 18 additions and 3 deletions

View File

@@ -211,6 +211,10 @@ type DepositOrderEdge {
node: DepositOrder!
}
input DepositOrderFilterInput {
status: [ProcessStatus!]
}
type FiatBalance implements Node {
amountCents: Int!
amountCurrency: String!
@@ -335,6 +339,7 @@ type Query {
Returns the elements in the list that come before the specified cursor.
"""
before: String
filter: DepositOrderFilterInput
"""
Returns the first _n_ elements from the list.