You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Are you aware of an issue in Kiota that could relate to this? Or am I not following the correct solution? I could not find much references of skipToken/skip_token in the Ruby lib.
I would expect I would be able for example to do the following two requests (given there is a nextToken):
group_id="cd6e0472-971c-402e-8040-dbbf53652e35"group_params=MicrosoftGraph::Groups::Delta::DeltaRequestBuilder::DeltaRequestBuilderGetQueryParameters.newgroup_params.select=["id","displayName","members"]group_params.filter="id eq '#{group_id}'"request_configuration=MicrosoftKiotaAbstractions::RequestConfiguration.newrequest_configuration.query_parameters=group_paramsresp=graph_client.groups.delta.get(request_configuration).resume# Do something with the first delta set# ... # Extract skipTokenskip_token=CGI.parse(URI(resp.odata_next_link).query)["$skiptoken"]# Generate new request with skip tokengroup_params=MicrosoftGraph::Groups::Delta::DeltaRequestBuilder::DeltaRequestBuilderGetQueryParameters.new# Doesn't exist! Only skip, but this is not the expected parameter.group_params.skip_token=skip_tokenrequest_configuration=MicrosoftKiotaAbstractions::RequestConfiguration.newrequest_configuration.query_parameters=group_paramsgraph_client.groups.delta.get(request_configuration).resume
From my understanding of the Delta API and other languages implementations, I think classes for building delta request parameters (ex. MicrosoftGraph::Groups::Delta::DeltaRequestBuilder::DeltaRequestBuilderGetQueryParameters) should support a
skipTokenand adeltaTokento make subsequent requests.Are you aware of an issue in Kiota that could relate to this? Or am I not following the correct solution? I could not find much references of skipToken/skip_token in the Ruby lib.
I would expect I would be able for example to do the following two requests (given there is a nextToken):