Sha256: 3d01dd5607133fd158aeac41ceacda98978f2f8e9a79b1692cc1b7aaa3775592
Contents?: true
Size: 515 Bytes
Versions: 14
Compression:
Stored size: 515 Bytes
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses # This type represents a ParticipatoryProcess. ParticipatoryProcessType = GraphQL::ObjectType.define do interfaces [ -> { Decidim::Core::ParticipatorySpaceInterface }, -> { Decidim::Core::AttachableInterface } ] name "ParticipatoryProcess" description "A participatory process" field :steps, !types[ParticipatoryProcessStepType], "All the steps of this process." end end end
Version data entries
14 entries across 14 versions & 1 rubygems