# ArticleEdge An edge in a connection to an Article. ## Connection Structure ```graphql { node: Article cursor: String! } ``` ## Edge Type The `ArticleEdge` type represents a single edge within an article connection. Each edge contains: - **node**: The `Article` object at the end of this edge. This field is optional and contains the actual article data. - **cursor**: A required string value that serves as an opaque cursor for use in pagination. This cursor can be passed to subsequent queries to fetch the next or previous page of results. ## Related Types - [Article](/reference/storefront/v1/objects/article) - String