Sha256: 24abb6b8fac1b0f62baa32f5749af4a9fe4da02b70e33ec7ddb6515f3b21afed

Contents?: true

Size: 421 Bytes

Versions: 2

Compression:

Stored size: 421 Bytes

Contents

query GetComments($commentableId: String!, $commentableType: String!, $orderBy: String) {
  session {
    user {
      name
      avatarUrl
    }
    ...AddCommentFormSession
  }
  commentable(id: $commentableId, type: $commentableType) {
    acceptsNewComments
    commentsHaveAlignment
    commentsHaveVotes
    comments(orderBy: $orderBy) {
      id
      ...CommentThread
    }
    ...AddCommentFormCommentable
  }
}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
decidim-comments-0.0.5 app/frontend/comments/comments.query.graphql
decidim-0.0.5 decidim-comments/app/frontend/comments/comments.query.graphql