Sha256: 2e3e40d3e91de5149a4c0dc98c1d492c37e66c7c3a56f39f4260792f5594e595
Contents?: true
Size: 820 Bytes
Versions: 10
Compression:
Stored size: 820 Bytes
Contents
# frozen_string_literal: true module Decidim module Accountability TimelineEntryType = GraphQL::ObjectType.define do name "TimelineEntry" description "A Timeline Entry" field :id, !types.ID, "The internal ID for this timeline entry" field :entryDate, Decidim::Core::DateType, "The entry date for this timeline entry", property: :entry_date field :description, Decidim::Core::TranslatedFieldType, "The description for this timeline entry" field :createdAt, Decidim::Core::DateTimeType, "When this timeline entry was created", property: :created_at field :updatedAt, Decidim::Core::DateTimeType, "When this timeline entry was updated", property: :updated_at field :result, Decidim::Accountability::ResultType, "The result for this timeline entry" end end end
Version data entries
10 entries across 10 versions & 1 rubygems