Sha256: eb898595b99d502094ea1838004ce75292a7e64fb53c83649ab268648efde39b
Contents?: true
Size: 529 Bytes
Versions: 37
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true module Decidim # This type represents a step on a participatory process. ProcessStepType = GraphQL::ObjectType.define do name "ProcessStep" description "A participatory process step" field :id, !types.ID, "The unique ID of this step." field :process do type !ProcessType description "The participatory process in which this step belongs to." property :participatory_process end field :title, !TranslatedFieldType, "The title of this step" end end
Version data entries
37 entries across 37 versions & 2 rubygems