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
Describe the bug Typescript get request Filter parameters are generated with a wrong syntax
Docs Link
let requestParameters = { filter : "userConsentRequests/any", }; const result = async () => { await graphServiceClient.identityGovernance.appConsent.appConsentRequestsById("appConsentRequest-id").get(requestParameters); }
The text was updated successfully, but these errors were encountered:
@nikithauc are you able to help with getting the expected syntax for typescript syntax that is equivalent to this csharp example
Sorry, something went wrong.
@rkodev
filterByCurrentUserWithOn function is present in AppConsentRequestsRequestBuilder.
filterByCurrentUserWithOn
AppConsentRequestsRequestBuilder
It looks like we need to use appConsentRequests instead of appConsentRequestsById.
appConsentRequests
appConsentRequestsById
rkodev
Successfully merging a pull request may close this issue.
Describe the bug
Typescript get request Filter parameters are generated with a wrong syntax
Docs Link
The text was updated successfully, but these errors were encountered: