Welcome to mirror list, hosted at ThFree Co, Russian Federation.

metadata_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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