Sha256: c5d165ea251acc9a526eaaa62794031fff2ca1c527981dfdbf247b3fc848cdf9
Contents?: true
Size: 757 Bytes
Versions: 2
Compression:
Stored size: 757 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, $singleCommentId: String) { session { user { name nickname avatarUrl organizationName } ...AddCommentFormSession } commentable(id: $commentableId, type: $commentableType) { acceptsNewComments userAllowedToComment commentsHaveAlignment commentsHaveVotes totalCommentsCount comments(orderBy: $orderBy, singleCommentId: $singleCommentId) { id ...CommentThread } ...AddCommentFormCommentable } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
decidim-comments-0.22.0 | app/frontend/queries/comments.query.graphql |
decidim-comments-0.21.0 | app/frontend/queries/comments.query.graphql |