Sha256: 12d9191696ed8167f1de9d88bfec5d25549aab4737a60643b94a542a9e891ab5
Contents?: true
Size: 529 Bytes
Versions: 8
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true module Decidim # This type represents a ParticipatoryProcess. DecidimType = GraphQL::ObjectType.define do name "Decidim" description "Decidim's framework-related properties." field :version, !types.String, "The current decidim's version of this deployment." do resolve ->(obj, _args, _ctx) { obj.version } end field :application_name, !types.String, "The current installation's name." do resolve ->(obj, _args, _ctx) { obj.application_name } end end end
Version data entries
8 entries across 8 versions & 1 rubygems