gitlab-org--gitlab-foss/app/graphql
Luke Duncalfe ccb4edbca1 Improve GraphQL Authorization DSL
Previously GraphQL field authorization happened like this:

    class ProjectType
      field :my_field, MyFieldType do
        authorize :permission
      end
    end

This change allowed us to authorize like this instead:

    class ProjectType
      field :my_field, MyFieldType, authorize: :permission
    end

A new initializer registers the `authorize` metadata keyword on GraphQL
Schema Objects and Fields, and we can collect this data within the
context of Instrumentation like this:

    field.metadata[:authorize]

The previous functionality of authorize is still being used for
mutations, as the #authorize method here is called at during the code
that executes during the mutation, rather than when a field resolves.

https://gitlab.com/gitlab-org/gitlab-ce/issues/57828
2019-02-26 10:22:12 +13:00
..
functions Enable frozen string in app/graphql + app/finders 2018-09-11 12:15:23 -07:00
mutations Add field mergeRequests for project in GraphQL 2019-02-14 15:52:17 +08:00
resolvers Add GraphQL filters for issuables (state, labels, time fields) 2019-02-21 09:40:49 +01:00
types Improve GraphQL Authorization DSL 2019-02-26 10:22:12 +13:00
gitlab_schema.rb Enable frozen string in app/graphql + app/finders 2018-09-11 12:15:23 -07:00