Sha256: 30d3f2a54ef681f14a930857808d4e934821f1b2130beba4b43281f1dbafeae7
Contents?: true
Size: 632 Bytes
Versions: 24
Compression:
Stored size: 632 Bytes
Contents
#import "../fragments/add_comment_form_session.fragment.graphql" #import "../fragments/comment_thread.fragment.graphql" #import "../fragments/add_comment_form_commentable.fragment.graphql" query GetComments($commentableId: String!, $commentableType: String!, $orderBy: String) { session { user { name avatarUrl organizationName } ...AddCommentFormSession } commentable(id: $commentableId, type: $commentableType) { acceptsNewComments commentsHaveAlignment commentsHaveVotes comments(orderBy: $orderBy) { id ...CommentThread } ...AddCommentFormCommentable } }
Version data entries
24 entries across 24 versions & 2 rubygems