GitHub

CommentConnection

An auto-generated type for paginating through multiple Comments.

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