Sha256: 06f83e251c439030dd1064dcfce46f29d4d03b871e6dd7131ad1ffdd4906f61d

Contents?: true

Size: 1.23 KB

Versions: 50

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

module Decidim
  module Forms
    class QuestionType < Decidim::Api::Types::BaseObject
      description "A question in a questionnaire"

      implements Decidim::Core::TimestampsInterface

      field :id, GraphQL::Types::ID, "ID of this question", null: false
      field :body, Decidim::Core::TranslatedFieldType, "What is being asked in this question.", null: false
      field :description, Decidim::Core::TranslatedFieldType, "The description of this question.", null: true
      field :mandatory, GraphQL::Types::Boolean, "Whether if this question is mandatory.", null: false
      field :position, GraphQL::Types::Int, "Order position of the question in the questionnaire", null: true
      field :max_choices, GraphQL::Types::Int, "On questions with answer options, maximum number of choices the user has", null: true
      field :max_characters, GraphQL::Types::Int, "On questions with free text answers, maximum number of characters the answer can have (0 if no limit)", null: false
      field :question_type, GraphQL::Types::String, "Type of question.", null: true
      field :answer_options, [AnswerOptionType, { null: true }], "List of answer options in multi-choice questions.", null: false
    end
  end
end

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
decidim-forms-0.29.1 lib/decidim/api/question_type.rb
decidim-forms-0.28.4 lib/decidim/api/question_type.rb
decidim-forms-0.27.9 lib/decidim/api/question_type.rb
decidim-forms-0.29.0 lib/decidim/api/question_type.rb
decidim-forms-0.28.3 lib/decidim/api/question_type.rb
decidim-forms-0.27.8 lib/decidim/api/question_type.rb
decidim-forms-0.29.0.rc4 lib/decidim/api/question_type.rb
decidim-forms-0.29.0.rc3 lib/decidim/api/question_type.rb
decidim-forms-0.29.0.rc2 lib/decidim/api/question_type.rb
decidim-forms-0.29.0.rc1 lib/decidim/api/question_type.rb
decidim-forms-0.28.2 lib/decidim/api/question_type.rb
decidim-forms-0.27.7 lib/decidim/api/question_type.rb
decidim-forms-0.28.1 lib/decidim/api/question_type.rb
decidim-forms-0.27.6 lib/decidim/api/question_type.rb
decidim-forms-0.26.10 lib/decidim/api/question_type.rb
decidim-forms-0.26.9 lib/decidim/api/question_type.rb
decidim-forms-0.28.0 lib/decidim/api/question_type.rb
decidim-forms-0.27.5 lib/decidim/api/question_type.rb
decidim-forms-0.28.0.rc5 lib/decidim/api/question_type.rb
decidim-forms-0.28.0.rc4 lib/decidim/api/question_type.rb