summaryrefslogtreecommitdiff
path: root/app/graphql/types/metadata_type.rb
blob: 2d8bad0614b16069ee3c47c37110856e40ab0525 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Types
  class MetadataType < ::Types::BaseObject
    graphql_name 'Metadata'

    field :version, GraphQL::STRING_TYPE, null: false
    field :revision, GraphQL::STRING_TYPE, null: false
  end
end