Sha256: 2e9b43f325379fbb1e221592874a861d6c89a48b7522a00aff1e81cab381d835
Contents?: true
Size: 452 Bytes
Versions: 37
Compression:
Stored size: 452 Bytes
Contents
# frozen_string_literal: true module Decidim # This type represents a ParticipatoryProcess. ProcessType = GraphQL::ObjectType.define do name "Process" description "A participatory process" field :id, !types.ID, "The Process' unique ID" field :title, !TranslatedFieldType, "The title of this process." connection :steps, ProcessStepType.connection_type do description "All the steps of this process." end end end
Version data entries
37 entries across 37 versions & 2 rubygems