Class: LMS::GraphQL::Mutations::Canvas::InviteOthersToGroup
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- LMS::GraphQL::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
11 12 13 14 15 16 17 18 19 |
# File 'lib/lms/graphql/mutations/canvas/invite_others_to_group.rb', line 11 def resolve(group_id:, invitees:) ctx[:canvas_api].proxy( "INVITE_OTHERS_TO_GROUP", { "group_id": group_id, "invitees": invitees }, nil, ).parsed_response end |