gitlab-org--gitlab-foss/config/initializers/graphql.rb
Bob Van Landuyt 58aaa766a4 Types::BaseField accepts authorize after reload
When working on files in `app/graphql` the code correctly gets
autoloaded.

However, the redefined `Types::BaseField` would never receive the
`.accepts_definition` call, causing all queries after a reload to
fail. Calling `.accepts_definition` on its superclass makes sure the
reloaded version also has the `authorize` definition specified.
2019-03-04 11:19:28 +01:00

4 lines
180 B
Ruby

# frozen_string_literal: true
GraphQL::Field.accepts_definitions(authorize: GraphQL::Define.assign_metadata_key(:authorize))
GraphQL::Schema::Field.accepts_definition(:authorize)