Skip to content

Commit

Permalink
Improve Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
pri-kise committed Mar 25, 2024
1 parent 273a2c6 commit beb5e0a
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,19 @@ codeunit 9353 "Graph Optional Parameters"

#region ODataQueryParameters


/// <summary>
/// Sets the value for the OData Query Parameter '$count'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#count-parameter
/// </summary>
procedure SetODataQueryParameterCount()
begin
GraphOptionalParametersImpl.SetODataQueryParameterCount(true);
end;

/// <summary>
/// Sets the value for the OData Query Parameter '$expand'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#expand-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterExpand("Value": Text)
Expand All @@ -96,6 +102,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$filter'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#filter-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterFilter("Value": Text)
Expand All @@ -105,6 +112,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$format'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#format-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterFormat("Value": Text)
Expand All @@ -114,6 +122,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$orderBy'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#orderby-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterOrderBy("Value": Text)
Expand All @@ -123,6 +132,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$search'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#search-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterSearch("Value": Text)
Expand All @@ -132,6 +142,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$select'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#select-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterSelect("Value": Text)
Expand All @@ -141,6 +152,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$skip'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#skip-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterSkip("Value": Integer)
Expand All @@ -150,6 +162,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$skipToken'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#skiptoken-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterSkipToken("Value": Text)
Expand All @@ -159,6 +172,7 @@ codeunit 9353 "Graph Optional Parameters"

/// <summary>
/// Sets the value for the OData Query Parameter '$top'.
/// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#top-parameter
/// </summary>
/// <param name="Value">Text value specifying the query parameter</param>
procedure SetODataQueryParameterTop("Value": Integer)
Expand Down

0 comments on commit beb5e0a

Please sign in to comment.