Class: LMSGraphQL::Mutations::Canvas::CreateSubgroupAccount

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

Instance Method Summary collapse

Instance Method Details

#resolve(account_id:, id:, title:, description: nil, vendor_guid: nil) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/lms_graphql/mutations/canvas/create_subgroup_accounts.rb', line 16

def resolve(account_id:, id:, title:, description: nil, vendor_guid: nil)
  context[:canvas_api].call("CREATE_SUBGROUP_ACCOUNTS").proxy(
    "CREATE_SUBGROUP_ACCOUNTS",
    {
      "account_id": ,
      "id": id
    },
    {
      "title": title,
      "description": description,
      "vendor_guid": vendor_guid
    },
  ).parsed_response
end