@@ -14,6 +14,7 @@ use Symfony\Component\TypeInfo\TypeIdentifier;
#[ApiResource(
shortName: 'AttributeOption',
description: 'Attribute option resource',
+ paginationItemsPerPage: 50,
operations: [
new GetCollection(
uriTemplate: '/attribute_options',
@@ -47,7 +47,7 @@ class AttributeOptionCollectionProvider implements ProviderInterface
$after = $args['after'] ?? null;
$before = $args['before'] ?? null;
- $defaultPerPage = 10;
+ $defaultPerPage = 50;
// Determine page size
if ($first !== null) {