checkoutsConnection
Cross-tenant payments audit across all users, orgs, and apps (newest first), with optional filtering. Restricted to super admins; requests from non-super-admins are rejected. For a caller's own history use myCheckoutsConnection instead. Relay cursor connection; prefer this over the offset-based checkouts.
checkoutsConnection(
first: Int
after: String
filter: CheckoutFilterInput
): CheckoutsConnection!
Arguments
checkoutsConnection.first ● Int scalar
Return the first N edges after after. Default 50; clamped to 1..200.
checkoutsConnection.after ● String scalar
Opaque cursor: return edges after this one. Pass a previous page's pageInfo.endCursor. Omit for the first page.
checkoutsConnection.filter ● CheckoutFilterInput input
Optional filters (provider, purpose, status, userId, orgId, appId), AND-combined. Omit to return all checkouts.
Type
CheckoutsConnection object
A Relay cursor connection over Checkout records. Page with first/after; pass pageInfo.endCursor back as after for the next page.