A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
When I perform a query for bulk operations related to discount codes, I consistently receive only 100 discount redeem codes in the results. However, I have two discount codes one having 500 discount redeem codes and other one 10K redeem codes
Has anyone else encountered this limitation before? Is there a specific reason why only 100 redeem discount codes are being returned, or is there a way to retrieve all redeem discount codes in a single query?
GraphQL Query
mutation {
bulkOperationRunQuery(
query: """
{
discountNodes {
edges {
node {
id
discount {
... on DiscountCodeBasic {
title
codeCount
status
codes {
edges {
node {
id
code
}
}
}
}
}
}
}
}
}
"""
) {
bulkOperation {
id
status
}
userErrors {
field
message
}
}
}