Question regarding any limits on the data set size returned by Bulk Operations Graphql. I’m trying to get all collections and the associated products in the collection. When I get the Bulk Response back it returns a max of 100 products in the response even though many of the collections are larger than this. Graphql below:
mutation {
bulkOperationRunQuery(
query: """
{
collections(first: 1000000) {
edges {
node {
id
handle
updatedAt
sortOrder
title
productsCount
templateSuffix
products(first: 1000000) {
edges {
node {
id
}
}
}
ruleSet {
appliedDisjunctively
rules {
relation
column
condition
}
}
}
}
}
}
"""
) {
bulkOperation {
id
status
}
userErrors {
field
message
}
}
}