Sha256: 986b44853f6e17a4847d43bbdead2556f381a07754b31de6b4a08aef5164d819

Contents?: true

Size: 444 Bytes

Versions: 2

Compression:

Stored size: 444 Bytes

Contents

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

2 entries across 2 versions & 2 rubygems

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