-
This fails
```
kiota show -k apisguru::polygon.io
```
but the copy maintained by apisguru is valid
```
https://raw.githubusercontent.com/APIs-guru/openapi-directory/main/APIs/polygon.io/1.0.0/sw…
-
Certain OData functions have path parameters referenced in `query` instead of `path`. This results in generation error since code generators cannot find the specified path parameters.
#### Current …
-
Reproduced by:
```
var apps = await _graphClient.Applications.GetAsync();
var application = apps.Value.FirstOrDefault(x => x.DisplayName == "MyApp");
await _graphClient.Applications[application.…
-
Steps to reproduce:
1. Generate request builders for Graph v1.0.
2. Use the generated code to create a request.
3. Build and run the request
Expected: Result from Graph API.
Actual:
`…
-
While working on the CLI with @calebkiage a question came up. How do we now at generation when to add the --all option to command that support pagination?
I believe that autorest is using an extens…
-
From my OpenApi spec, I see generated code like this:
![image](https://user-images.githubusercontent.com/4985349/177804017-dfc88908-cbfc-4e15-b4f3-0d45fd392b30.png)
And the selected class has th…
-
Models are under Microsoft.Graph.models instead of models. This might be due to the package prefix and go conventions.
It makes imports longer and discovery harder.
-
An Open API path like `/ToDoItems/{id}` will result in an extra model class being generated named `With`, and a `WithRequestBuilder` being generated to handle GET (for a single item), DELETE, and PATC…
-
Hello,
Using this [example ](https://docs.microsoft.com/en-us/graph/api/group-post-members?view=graph-rest-1.0&tabs=go) to attempt to add a member to an azure ad group.
I have this bit of code
…
-
Testing code:
```
const userRequestBuilder = client.usersById("ID");
const messagesRequestBuilder = userRequestBuilder.messages;
const message = new Message();
message.subject = "test subject"…