Class: LMSGraphQL::Mutations::Canvas::CreateExternalFeedGroup
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- LMSGraphQL::Mutations::Canvas::CreateExternalFeedGroup
- Defined in:
- lib/lms_graphql/mutations/canvas/create_external_feed_groups.rb
Instance Method Summary collapse
Instance Method Details
#resolve(group_id:, url:, header_match: nil, verbosity: nil) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/lms_graphql/mutations/canvas/create_external_feed_groups.rb', line 12 def resolve(group_id:, url:, header_match: nil, verbosity: nil) ctx[:canvas_api].proxy( "CREATE_EXTERNAL_FEED_GROUPS", { "group_id": group_id, "url": url, "header_match": header_match, "verbosity": verbosity }, nil, ).parsed_response end |