Makes use of path ops and path template.
{
Stripe_getCustomersCustomer(customer: "cus_Jtvm4LSm8CA3Qf") {
... on Stripe_Customer {
id
name
email
description
}
}
}Makes use of searchParams.
{
Stripe_getCustomers(email: "[email protected]") {
data {
id
name
email
description
}
}
}Makes use of expand, which has to be serialized according to params.
mutation {
Stripe_postCustomersCustomer(
customer: "cus_Jtvm4LSm8CA3Qf"
input: { description: "lalala", expand: ["subscriptions"] }
) {
id
name
email
description
subscriptions {
data {
id
collection_method
}
}
}
}