GitHub

ArticleConnection

An auto-generated type for paginating through multiple Articles.

import { ArticleConnection } from '@daffodil/driver/shopify'
type ArticleConnection = {
    __typename?: 'ArticleConnection';
    edges: Array<ArticleEdge>;
    nodes: Array<Article>;
    pageInfo: PageInfo;
}
Type Options
ArticleConnection { __typename?: 'ArticleConnection'; edges: Array<ArticleEdge>; nodes: Array<Article>; pageInfo: PageInfo; }