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
* To add query string for filter OData Query param. The request URL accepts only one $filter Odata Query option and its value is set to the most recently passed filter query string.
524
525
* @param {string} filterStr - The filter query string
525
-
* @returns The same GraphRequest instance that is being called with
526
+
* @returns The same GraphRequest instance that is being called with, after adding the $filter query
* To add criterion for search OData Query param. The request URL accepts only one $search Odata Query option and its value is set to the most recently passed search criterion string.
535
536
* @param {string} searchStr - The search criterion string
536
-
* @returns The same GraphRequest instance that is being called with
537
+
* @returns The same GraphRequest instance that is being called with, after adding the $search query criteria
* To add number for top OData Query param. The request URL accepts only one $top Odata Query option and its value is set to the most recently passed number value.
546
547
* @param {number} n - The number value
547
-
* @returns The same GraphRequest instance that is being called with
548
+
* @returns The same GraphRequest instance that is being called with, after adding the number for $top query
548
549
*/
549
550
publictop(n: number): GraphRequest{
550
551
this.urlComponents.oDataQueryParams.$top=n;
@@ -555,7 +556,7 @@ export class GraphRequest {
555
556
* @public
556
557
* To add number for skip OData Query param. The request URL accepts only one $skip Odata Query option and its value is set to the most recently passed number value.
557
558
* @param {number} n - The number value
558
-
* @returns The same GraphRequest instance that is being called with
559
+
* @returns The same GraphRequest instance that is being called with, after adding the number for the $skip query
559
560
*/
560
561
publicskip(n: number): GraphRequest{
561
562
this.urlComponents.oDataQueryParams.$skip=n;
@@ -566,7 +567,7 @@ export class GraphRequest {
566
567
* @public
567
568
* To add token string for skipToken OData Query param. The request URL accepts only one $skipToken Odata Query option and its value is set to the most recently passed token value.
568
569
* @param {string} token - The token value
569
-
* @returns The same GraphRequest instance that is being called with
570
+
* @returns The same GraphRequest instance that is being called with, after adding the token string for $skipToken query option
* To add boolean for count OData Query param. The URL accepts only one $count Odata Query option and its value is set to the most recently passed boolean value.
579
580
* @param {boolean} isCount - The count boolean
580
-
* @returns The same GraphRequest instance that is being called with
581
+
* @returns The same GraphRequest instance that is being called with, after adding the boolean value for the $count query option
0 commit comments