Skip to content
New issue

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

[Client bug]: Group delta is missing Skiptoken query parameter #2014

Closed
MartinM85 opened this issue Jul 11, 2023 · 4 comments · Fixed by #2087
Closed

[Client bug]: Group delta is missing Skiptoken query parameter #2014

MartinM85 opened this issue Jul 11, 2023 · 4 comments · Fixed by #2087

Comments

@MartinM85
Copy link
Contributor

Describe the bug
The following code won't compile, because Skiptoken property doesn't exist.

var graphClient = new GraphServiceClient(requestAdapter);

var result = await graphClient.Groups.Delta.GetAsync((requestConfiguration) =>
{
	requestConfiguration.QueryParameters.Skiptoken = "pqwSUjGYvb3jQpbwVAwEL7yuI3dU1LecfkkfLPtnIjvB7XnF_yllFsCrZJ";
});

To Reproduce
Steps to reproduce the behavior:
The code above

Expected behavior
Can set Skiptoken

Screenshots
If applicable, add screenshots to help explain your problem.

Client version
5.17

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

@ghost ghost added the Needs: Triage label Jul 11, 2023
@Nemeczek
Copy link

It is hapening also in Python SDK. Microsft is completly silent about this for weeks now

@andrueastman
Copy link
Member

Related to microsoftgraph/msgraph-metadata#354

@kavrat
Copy link

kavrat commented Aug 15, 2023

Related to https://github.com/microsoftgraph/microsoft-graph-docs-contrib/issues/13
Token also is missing

requestConfiguration.QueryParameters.Token

@andrueastman
Copy link
Member

Related to microsoftgraph/microsoft-graph-docs-contrib#13 Token also is missing

requestConfiguration.QueryParameters.Token

The snippet in the docs should be

var result = await graphClient.Drives["{drive-id}"].Items["{driveItem-id}"].DeltaWithToken("latest").GetAsync();

This is different issue now tracked via microsoftgraph/microsoft-graph-devx-api#1725 in the snippet generator.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants