Query
query BillingPlans {
billingPlans {
edges {
cursor
node {
key
name
description
features
highlightedLabel
isSelfCheckoutEligible
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"billingPlans": {
"edges": [
{
"cursor": "string",
"node": {
"key": "LEGACY",
"name": "string",
"description": "string",
"features": [
"string"
],
"highlightedLabel": "string",
"isSelfCheckoutEligible": true
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Queries
billingPlans
Returns the available billing plans that can be selected for self-serve checkout. Supports standard forward and backward pagination.
QUERY
billingPlans(first: Int, after: String, last: Int, before: String): BillingPlanConnection!Arguments
first
Int
after
String
last
Int
before
String
Returns
edges
[BillingPlanEdge!]!
pageInfo
Query
query BillingPlans {
billingPlans {
edges {
cursor
node {
key
name
description
features
highlightedLabel
isSelfCheckoutEligible
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"billingPlans": {
"edges": [
{
"cursor": "string",
"node": {
"key": "LEGACY",
"name": "string",
"description": "string",
"features": [
"string"
],
"highlightedLabel": "string",
"isSelfCheckoutEligible": true
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Was this page helpful?

