Sha256: 8554963dcd935262140981e6de687872c8c268644272ff4f2cc8033448b54535
Contents?: true
Size: 391 Bytes
Versions: 24
Compression:
Stored size: 391 Bytes
Contents
# frozen_string_literal: true module Decidim module Core MetricType = GraphQL::ObjectType.define do name "MetricType" description "Metric data" field :name, !types.String, "The name of the metric" field :count, !types.Int, "The last value of the metric" field :history, !types[MetricHistoryType], "The historic values for this metric" end end end
Version data entries
24 entries across 24 versions & 1 rubygems