payments
List of payments.
Implements the Relay Connection interface, used to paginate lists of elements. (Learn More) For a Project access token, this is all the payments of the project and for an User access token, these are the payments initiated by the user
payments(
first: Int! = 50
before: String
after: String
orderBy: PaymentOrderByInput
filters: PaymentFiltersInput
): PaymentConnection!
Arguments
payments.first ● Int! non-null scalar
the number of elements to load (default value 50, maximum: 100)
payments.before ● String scalar
the index (a unique reference in string form) from which you will load the preceding elements
payments.after ● String scalar
the index (a unique reference in string form) from which you will load the following elements
payments.orderBy ● PaymentOrderByInput input
an order you can apply to your list of connections (default value UpdatedAt desc)
payments.filters ● PaymentFiltersInput input
a filtering table you can apply to your list of connections
Type
PaymentConnection object
Please see the Connection interface