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
426
+
* To add query string for filter OData Query param. The request URL accepts only one $filter Odata Query option and it's value is set to the most recently passed filter query string.
434
427
* @param {string} filterStr - The filter query string
435
428
* @returns The same GraphRequest instance that is being called with
436
429
*/
@@ -441,7 +434,7 @@ export class GraphRequest {
441
434
442
435
/**
443
436
* @public
444
-
* To add criterion for search OData Query param
437
+
* To add criterion for search OData Query param. The request URL accepts only one $search Odata Query option and it's value is set to the most recently passed search criterion string.
445
438
* @param {string} searchStr - The search criterion string
446
439
* @returns The same GraphRequest instance that is being called with
447
440
*/
@@ -452,7 +445,7 @@ export class GraphRequest {
452
445
453
446
/**
454
447
* @public
455
-
* To add number for top OData Query param
448
+
* To add number for top OData Query param. The request URL accepts only one $top Odata Query option and it's value is set to the most recently passed number value.
456
449
* @param {number} n - The number value
457
450
* @returns The same GraphRequest instance that is being called with
458
451
*/
@@ -463,7 +456,7 @@ export class GraphRequest {
463
456
464
457
/**
465
458
* @public
466
-
* To add number for skip OData Query param
459
+
* To add number for skip OData Query param. The request URL accepts only one $skip Odata Query option and it's value is set to the most recently passed number value.
467
460
* @param {number} n - The number value
468
461
* @returns The same GraphRequest instance that is being called with
469
462
*/
@@ -474,7 +467,7 @@ export class GraphRequest {
474
467
475
468
/**
476
469
* @public
477
-
* To add token string for skipToken OData Query param
470
+
* To add token string for skipToken OData Query param. The request URL accepts only one $skipToken Odata Query option and it's value is set to the most recently passed token value.
478
471
* @param {string} token - The token value
479
472
* @returns The same GraphRequest instance that is being called with
480
473
*/
@@ -485,7 +478,7 @@ export class GraphRequest {
485
478
486
479
/**
487
480
* @public
488
-
* To add boolean for count OData Query param
481
+
* To add boolean for count OData Query param. The URL accepts only one $count Odata Query option and it's value is set to the most recently passed boolean value.
489
482
* @param {boolean} isCount - The count boolean
490
483
* @returns The same GraphRequest instance that is being called with
491
484
*/
@@ -501,19 +494,26 @@ export class GraphRequest {
501
494
* @returns The same GraphRequest instance that is being called with
constindexOfFirstEquals=queryDictionaryOrString.indexOf("=");// The query key-value pair must be split on the first equals sign to avoid error while parsing nested query parameters
0 commit comments