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

mutation_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06ed91c1658138ecf1dda26b9da3fd8885ff1338 (plain)
1
2
3
4
5
6
7
module Types
  class MutationType < BaseObject
    graphql_name "Mutation"

    # TODO: Add Mutations as fields
  end
end