I want to do something like this:
authorize record, :some_action
In resolving a graphql field or mutation(example is mutation)
module Mutations::CreateLink
CreateLink = GraphQL::Relay::Mutation.define do
name "CreateLink"
input_field :name, types.String
input_field :url, types.String
input_field :description, types.String
return_field :link, Types::LinkType
resolve -> (object, inputs, ctx) {
Rails::logger.ap ctx[:current_user]
Rails::logger.ap inputs[:name]
ctx[:current_user]
@link = Link.new(name: inputs[:name], url: inputs[:url], description: inputs[:description])
authorize @link, :create?
response = {
link: @link
}
}
end
end
When the above is run this error is shown: NoMethodError - GraphQL::Relay::Mutation can't define 'authorize'
Normally you write
include Pundit
In your controller, but adding it to the GraphqlController does not make any difference.
How do i make it so that graphql is aware of pundit and its methods?
The reason why
include Pundit
does not work is that includes are added to classes when you include a module and theauthorize
method would not work anyways since its meant to be included in controllers and makes assumptions based on that.But its really easy to initialize policies manually:
And you can authorize by calling the appropriate method on the policy: