Ability to use ApiRequest in Batch
See original GitHub issueCategory
- Feature request
Describe the feature
It would be nice if APIRequest could be added to a Batch for example when working with planner.
Describe the solution you’d like
var myBatch = context.NewBatch();
await context.Site.LoadBatchAsync(myBatch, s => s.GroupId);
var plannerRequest = new ApiRequest(ApiRequestType.Graph, $"groups/{context.Site.GroupId}/planner/plans");
await context.Group.LoadBatchAsync(myBatch, plannerRequest);
await context.ExecuteAsync(myBatch);
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
How to support batch web api request processing using ...
1 Answer 1 · Batch sender for client side, that is responsible for collecting and wrapping requests, unwrapping responses and sending them to ......
Read more >API Batch tutorial
This tutorial introduces you to performing a batch analysis using the API. ... Use the API request to list your billing groups, as...
Read more >Sending batch rest api request from apex
I tried getting details of multiple files using the API mentioned in the question and was able to successfully get response.
Read more >Combine multiple requests in one HTTP call using JSON ...
A JSON batch request body consists of a single JSON object with one required property: requests. The requests property is a collection of ......
Read more >batch-api.pdf
You can use AWS Batch to efficiently provision resources d, and work ... In a managed compute environment, AWS Batch manages the capacity...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@czullu / @DaleyKD : implemented. See https://pnp.github.io/pnpcore/using-the-sdk/basics-customapirequests.html#batching-custom-api-requests for instructions.
yes, you’ll get the json string back