Class: LMSGraphQL::Mutations::Canvas::DeleteUserLogin

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

Instance Method Summary collapse

Instance Method Details

#resolve(user_id:, id:) ⇒ Object



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

def resolve(user_id:, id:)
  context[:canvas_api].call("DELETE_USER_LOGIN").proxy(
    "DELETE_USER_LOGIN",
    {
      "user_id": user_id,
      "id": id
    },
    {},
  ).parsed_response
end