Skip to content

userPackageSelections

Fetch collection of all purchased packages

Arguments

after · Cursor · Cursor to fetch results after
offering_id · ID · ID of the offering to filter the list
user_id · ID · ID of the user to load the list of given packages

Returns

[UserPackageSelection!]

Example

query userPackageSelections(
$after: Cursor
$offering_id: ID
$offset: Int
$page_size: Int
$user_id: ID
) {
userPackageSelections(
after: $after
offering_id: $offering_id
offset: $offset
page_size: $page_size
user_id: $user_id
) {
billing_item
billing_item_id
created_at
cursor
id
initial_price_with_offering_coupon
offering
offering_coupon_id
recurring_payment
requested_payment
requested_payment_id
user
}
}