Class: LMSGraphQL::Mutations::Canvas::DeleteEntryGroup
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::Mutation
- BaseMutation
- LMSGraphQL::Mutations::Canvas::DeleteEntryGroup
- Defined in:
- lib/lms_graphql/mutations/canvas/delete_entry_groups.rb
Instance Method Summary collapse
Instance Method Details
#resolve(group_id:, topic_id:, id:) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/lms_graphql/mutations/canvas/delete_entry_groups.rb', line 14 def resolve(group_id:, topic_id:, id:) context[:canvas_api].call("DELETE_ENTRY_GROUPS").proxy( "DELETE_ENTRY_GROUPS", { "group_id": group_id, "topic_id": topic_id, "id": id }, {}, ).parsed_response end |