# OrderEdge An edge in a connection to an Order. ## Connection Structure ```graphql { node: Order cursor: String! } ``` ## Edge Type The `OrderEdge` type represents a single edge within an order connection. Each edge contains: - **node**: The `Order` object at this edge. This field is optional and contains the actual order data you're querying for. - **cursor**: A unique, opaque string identifier used for pagination purposes. This cursor can be passed to subsequent queries to retrieve additional pages of results. This field is required. ## Related Types - [Order](/reference/storefront/1.3.0/objects/order) - String