Sha256: 611d1d57b9cf602c4f9b21d14ad277827d617b48456c48522927e0b0a850573a
Contents?: true
Size: 450 Bytes
Versions: 50
Compression:
Stored size: 450 Bytes
Contents
# frozen_string_literal: true module Decidim module Core class MetricType < Decidim::Api::Types::BaseObject description "Metric data" field :name, GraphQL::Types::String, "The graphql_name of the metric", null: false field :count, GraphQL::Types::Int, "The last value of the metric", null: false field :history, [MetricHistoryType, { null: true }], "The historic values for this metric", null: false end end end
Version data entries
50 entries across 50 versions & 1 rubygems