Sha256: 68b64d89b04078defc7e9086095e83b5efed7995f48affadd51cc1dfa2460556
Contents?: true
Size: 625 Bytes
Versions: 52
Compression:
Stored size: 625 Bytes
Contents
# frozen_string_literal: true module Decidim module Pages class PageType < Decidim::Api::Types::BaseObject description "A page" field :id, GraphQL::Types::ID, null: false field :title, Decidim::Core::TranslatedFieldType, "The title of this page (same as the component name).", null: false field :body, Decidim::Core::TranslatedFieldType, "The body of this page.", null: true field :created_at, Decidim::Core::DateTimeType, "The time this page was created", null: false field :updated_at, Decidim::Core::DateTimeType, "The time this page was updated", null: false end end end
Version data entries
52 entries across 52 versions & 1 rubygems