class LMSGraphQL::Mutations::Canvas::ExportContentUser

Public Instance Methods

resolve(user_id:, export_type:, skip_notifications: nil, select: nil) click to toggle source
# File lib/lms_graphql/mutations/canvas/export_content_users.rb, line 15
def resolve(user_id:, export_type:, skip_notifications: nil, select: nil)
  context[:canvas_api].call("EXPORT_CONTENT_USERS").proxy(
    "EXPORT_CONTENT_USERS",
    {
      "user_id": user_id
    },
    {
      "export_type": export_type,
      "skip_notifications": skip_notifications,
      "select": select
    },
  ).parsed_response
end