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

order.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5e1cc406b4b07bb26adca82f850f1a2910a04a5 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Types
  class Types::Order < Types::BaseEnum
    value "id", "Created at date"
    value "updated_at", "Updated at date"
  end
end