--- title: GraphQL input objects limited to 250 items - Shopify developer changelog description: >- Shopify’s developer changelog documents all changes to Shopify’s platform. Find the latest news and learn about new platform opportunities. source_url: html: 'https://shopify.dev/changelog/graphql-input-objects-limited-to-250-items' md: 'https://shopify.dev/changelog/graphql-input-objects-limited-to-250-items.md' metadata: effectiveApiVersion: null affectedApi: [] primaryTag: displayName: API handle: api secondaryTag: displayName: Deprecation Announcement handle: deprecation indicatesActionRequired: true createdAt: '2019-12-16T13:56:25-05:00' postedAt: '2019-12-13T00:00:00-05:00' updatedAt: '2024-02-02T10:57:32-05:00' effectiveAt: '2019-12-13T00:00:00-05:00' --- December 13, 2019 Tags: * Action Required * API # GraphQL input objects limited to 250 items As of API version 2020-01, Storefront and Admin GraphQL requests return errors if any input array is supplied with more than 250 objects. We’re bringing input limits in-line with connection limits to protect Shopify and your app against timeouts. For example, the following query would need to reduce the number of input objects. ``` { nodes(ids: [“id1”, “id2”, “id3”, ... , “id251”, “id252”]) { … on Order { id } } ```