Skip to content

Commit

Permalink
Merge pull request #86 from haworthia/fix-user-query
Browse files Browse the repository at this point in the history
Fix niuser query documentation
  • Loading branch information
Gergő Papp-Szentannai authored Jul 23, 2020
2 parents d52ccc0 + 4ea3c0d commit 982bab5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions user/niuser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,9 @@ parameters:
- Logical OR operator 'or'. Example: 'x or y'
- Contains operator '.Contains()', used to check whether a string contains another string. Example: 'x.Contains(y)'
- Starts with operator '.StartsWith()', used to check whether a string starts with another string. Example: 'x.StartsWith(y)'
- Does not contain operator '!.Contains()', used to check whether a string does not contain another string. Example: '!x.Contains(y)'
- Does not start with operator '!.StartsWith()', used to check whether a string does not start with another string. Example: '!x.StartsWith(y)'
- String null or empty 'string.IsNullOrEmpty()', used to check whether a string is null or empty. Example: 'string.IsNullOrEmpty(x)'
Expand All @@ -433,7 +433,7 @@ parameters:
- status
type: string
example: firstName.Contains("John") && status == "active"
example: firstName.StartsWith("John") && status == "active"
take:
description: The maximum number of users to return
type: integer
Expand Down

0 comments on commit 982bab5

Please sign in to comment.