diff --git a/src/System Application/App/MicrosoftGraph/src/GraphOptionalParameters.Codeunit.al b/src/System Application/App/MicrosoftGraph/src/GraphOptionalParameters.Codeunit.al
index acb261c3df..512ee7c9b7 100644
--- a/src/System Application/App/MicrosoftGraph/src/GraphOptionalParameters.Codeunit.al
+++ b/src/System Application/App/MicrosoftGraph/src/GraphOptionalParameters.Codeunit.al
@@ -80,6 +80,11 @@ codeunit 9353 "Graph Optional Parameters"
#region ODataQueryParameters
+
+ ///
+ /// Sets the value for the OData Query Parameter '$count'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#count-parameter
+ ///
procedure SetODataQueryParameterCount()
begin
GraphOptionalParametersImpl.SetODataQueryParameterCount(true);
@@ -87,6 +92,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$expand'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#expand-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterExpand("Value": Text)
@@ -96,6 +102,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$filter'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#filter-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterFilter("Value": Text)
@@ -105,6 +112,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$format'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#format-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterFormat("Value": Text)
@@ -114,6 +122,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$orderBy'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#orderby-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterOrderBy("Value": Text)
@@ -123,6 +132,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$search'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#search-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterSearch("Value": Text)
@@ -132,6 +142,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$select'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#select-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterSelect("Value": Text)
@@ -141,6 +152,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$skip'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#skip-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterSkip("Value": Integer)
@@ -150,6 +162,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$skipToken'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#skiptoken-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterSkipToken("Value": Text)
@@ -159,6 +172,7 @@ codeunit 9353 "Graph Optional Parameters"
///
/// Sets the value for the OData Query Parameter '$top'.
+ /// see: https://learn.microsoft.com/en-us/graph/query-parameters?tabs=http#top-parameter
///
/// Text value specifying the query parameter
procedure SetODataQueryParameterTop("Value": Integer)