Class: LMSGraphQL::Mutations::Canvas::RemoveFeatureFlagAccount

Inherits:
BaseMutation
  • Object
show all
Defined in:
lib/lms_graphql/mutations/canvas/remove_feature_flag_accounts.rb

Instance Method Summary collapse

Instance Method Details

#resolve(account_id:, feature:) ⇒ Object



13
14
15
16
17
18
19
20
21
22
# File 'lib/lms_graphql/mutations/canvas/remove_feature_flag_accounts.rb', line 13

def resolve(account_id:, feature:)
  context[:canvas_api].call("REMOVE_FEATURE_FLAG_ACCOUNTS").proxy(
    "REMOVE_FEATURE_FLAG_ACCOUNTS",
    {
      "account_id": ,
      "feature": feature
    },
    {},
  ).parsed_response
end