myCheckoutsConnection
Lists the authenticated caller's own checkouts (newest first), across every org and app. Use this for a self-service payment history; use checkoutsConnection for the cross-tenant super-admin view. Requires an authenticated user. Relay cursor connection; prefer this over the offset-based myCheckouts.
myCheckoutsConnection(
first: Int
after: String
): CheckoutsConnection!
Arguments
myCheckoutsConnection.first ● Int scalar
Return the first N edges after after. Default 50; clamped to 1..200.
myCheckoutsConnection.after ● String scalar
Opaque cursor: return edges after this one. Pass a previous page's pageInfo.endCursor. Omit for the first page.
Type
CheckoutsConnection object
A Relay cursor connection over Checkout records. Page with first/after; pass pageInfo.endCursor back as after for the next page.