microsoft-graph-devx-api
microsoft-graph-devx-api copied to clipboard
Services API for Graph Explorer
## Overview Closes https://github.com/microsoftgraph/msgraph-sdk-python/issues/680 **From** ```python query_params = UsersRequestBuilder.UsersRequestBuilderGetQueryParameters( search=[ f'("displayName:{user_name}" OR "mail:{user_name}" OR "userPrincipalName:{user_name}" OR "givenName:{user_name}" OR "surName:{user_name}" OR "otherMails:{user_name}")' ], ) request_configuration = ( UsersRequestBuilder.UsersRequestBuilderGetRequestConfiguration( query_parameters=query_params, )) request_configuration.headers.add("ConsistencyLevel",...
Context: https://github.com/microsoftgraph/microsoft-graph-docs-contrib/issues/9123 In the snippets the user reported, we see this line: ```python from msgraph.generated.models.provision_on_demand_post_request_body import ProvisionOnDemandPostRequestBody ``` This is invalid. The correct import statement is: ```python from msgraph.generated.service_principals.item.synchronization.jobs.item.provision_on_demand.provision_on_demand_post_request_body import...
Some PRs that have been open for longer than 49 days contain files that haven't been fully authored and contain TODOs from the generated files. PRs that contain files with...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
The "No response was paired with this request" validation error isn't propagated to main logs. When the error occurs, the logs are hard to obtain as this doesn't show up...
**Describe the bug** Documented C# SDK usage for assigning custom security attribute did not work **To Reproduce** The following code example did not work https://learn.microsoft.com/en-us/graph/custom-security-attributes-examples?tabs=csharp#example-3-assign-a-custom-security-attribute-with-a-multi-string-value-to-a-user **Expected behavior** Used this code...
Fore the following pages: - https://docs.microsoft.com/en-us/graph/api/driveitem-get-content?view=graph-rest-1.0&tabs=java - https://docs.microsoft.com/en-us/graph/api/driveitem-get-content-format?view=graph-rest-1.0&tabs=java - https://docs.microsoft.com/en-us/graph/api/resource-get?view=graph-rest-1.0&tabs=java the sample should be along the lines of ```Java IGraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient(); InputStream stream = graphClient .me()...
Currently, not all docs link in the generation error logs redirect to the correct page. This is owing to the fact that there didn't seem to be a direct correlation...
DevX API to validate Graph queries before making permissions & snippets look-up calls. This will save network bandwidth for example when we get Graph API requests with url _https://lalala_ this...