GitHub

Comment

import { Comment } from '@daffodil/driver/shopify'

A comment on an article.

type Comment = Node & {
    __typename?: 'Comment';
    author: CommentAuthor;
    content: Scalars['String']['output'];
    contentHtml: Scalars['HTML']['output'];
    id: Scalars['ID']['output'];
}