Class: LMSGraphQL::Mutations::Canvas::InviteOthersToGroup
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- LMSGraphQL::Mutations::Canvas::InviteOthersToGroup
- Defined in:
- lib/lms_graphql/mutations/canvas/invite_others_to_group.rb
Instance Method Summary collapse
Instance Method Details
#resolve(group_id:, invitees:) ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'lib/lms_graphql/mutations/canvas/invite_others_to_group.rb', line 10 def resolve(group_id:, invitees:) ctx[:canvas_api].proxy( "INVITE_OTHERS_TO_GROUP", { "group_id": group_id, "invitees": invitees }, nil, ).parsed_response end |