File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -408,9 +408,9 @@ parameters:
408
408
409
409
- Logical OR operator 'or'. Example: 'x or y'
410
410
411
- - Contains operator '.Contains ()', used to check whether a string contains another string. Example: 'x.Contains (y)'
411
+ - Starts with operator '.StartsWith ()', used to check whether a string starts with another string. Example: 'x.StartsWith (y)'
412
412
413
- - Does not contain operator '!.Contains ()', used to check whether a string does not contain another string. Example: '!x.Contains (y)'
413
+ - Does not start with operator '!.StartsWith ()', used to check whether a string does not start with another string. Example: '!x.StartsWith (y)'
414
414
415
415
- String null or empty 'string.IsNullOrEmpty()', used to check whether a string is null or empty. Example: 'string.IsNullOrEmpty(x)'
416
416
@@ -433,7 +433,7 @@ parameters:
433
433
434
434
- status
435
435
type : string
436
- example : firstName.Contains ("John") && status == "active"
436
+ example : firstName.StartsWith ("John") && status == "active"
437
437
take :
438
438
description : The maximum number of users to return
439
439
type : integer
You can’t perform that action at this time.
0 commit comments