Class DeltaRequestBuilder.GetQueryParameters

java.lang.Object
com.microsoft.graph.groups.item.sites.delta.DeltaRequestBuilder.GetQueryParameters
All Implemented Interfaces:
com.microsoft.kiota.QueryParameters
Enclosing class:
DeltaRequestBuilder

@Generated("com.microsoft.kiota") public class DeltaRequestBuilder.GetQueryParameters extends Object implements com.microsoft.kiota.QueryParameters
Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state.
  • Field Details

    • count

      @Nullable public Boolean count
      Include count of items
    • expand

      @Nullable public String[] expand
      Expand related entities
    • filter

      @Nullable public String filter
      Filter items by property values
    • orderby

      @Nullable public String[] orderby
      Order items by property values
    • select

      @Nullable public String[] select
      Select properties to be returned
    • skip

      @Nullable public Integer skip
      Skip the first n items
    • top

      @Nullable public Integer top
      Show only the first n items
  • Constructor Details

    • GetQueryParameters

      public GetQueryParameters()
  • Method Details

    • toQueryParameters

      @Nonnull public Map<String,Object> toQueryParameters()
      Extracts the query parameters into a map for the URI template parsing.
      Specified by:
      toQueryParameters in interface com.microsoft.kiota.QueryParameters
      Returns:
      a Map<String,Object>