We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This TypeSpec:
interface Foo { #suppress "@azure-tools/typespec-azure-core/use-standard-operations" "This is a test." @route("{nextLink}") @get nextPage is Azure.Core.Foundations.Operation< { @query foo?: string, nextLink: string }, Azure.Core.Page<MyResource> >; @nextPageOperation(Foo.nextPage, { nextLink: ResponseProperty<"nextLink">, foo: RequestParameter<"foo"> }) list is Azure.Core.ResourceList<MyResource, { parameters: { @query foo?: string }; }>; }
End up with an error Request parameter 'foo' not found on request body model
Request parameter 'foo' not found on request body model
Discussed with @markcowl that we should be able to link non-body parameter as well
See above
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
This TypeSpec:
End up with an error
Request parameter 'foo' not found on request body model
Discussed with @markcowl that we should be able to link non-body parameter as well
Reproduction
See above
Checklist
The text was updated successfully, but these errors were encountered: