Sha256: c568cb177528ccbabbb8667455152bb8a36bb441bee6bbb1b3515c7e1564d8f2
Contents?: true
Size: 671 Bytes
Versions: 28
Compression:
Stored size: 671 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 nickname avatarUrl organizationName } ...AddCommentFormSession } commentable(id: $commentableId, type: $commentableType) { acceptsNewComments commentsHaveAlignment commentsHaveVotes totalCommentsCount comments(orderBy: $orderBy) { id ...CommentThread } ...AddCommentFormCommentable } }
Version data entries
28 entries across 28 versions & 1 rubygems