Sha256: 0fd8aef50890c09417a54d10a65f5c3b773c8d3fb080801eb785b842faaca2d8
Contents?: true
Size: 319 Bytes
Versions: 17
Compression:
Stored size: 319 Bytes
Contents
# frozen_string_literal: true module Decidim module Comments # This type represents a mutation to create new comments. AddCommentType = GraphQL::ObjectType.define do name "Add comment" description "Add a new comment" field :comment, CommentType, "The new created comment" end end end
Version data entries
17 entries across 17 versions & 2 rubygems