Skip to content

Commit

Permalink
Update 5-Employee-Search.md
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Sibly [chullybun] <[email protected]>
  • Loading branch information
chullybun authored Sep 30, 2024
1 parent 71bd6db commit 3679f5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/MyEf.Hr/docs/5-Employee-Search.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ Endpoint | Description
`GET /employees/query?$filter=startswith(lastName, 'smi*')` | all employees whose last name starts with `smi`.
`GET /employees/query?$filter=gender eq 'f'` | all female employees.
`GET /employees/query?$filter=startdate ge 2000-01-01 and startdate le 2002-12-31` | all employess who started between 01-Jan-2000 and 31-Dec-2002 (inclusive).
`GET /employees/query?$filter=startswith(lastName, 'smi*') and (terminated eq null || terminated ne null)` | all employees whose last name starts with `smi`, both current and terminated.
`GET /employees/query?$filter=startswith(lastName, 'smi*') and (terminated eq null \|\| terminated ne null)` | all employees whose last name starts with `smi`, both current and terminated.
`GET /employees?gender=f&$skip=10&$take25` | all female employees with paging (skipping the first 10 employees and getting the next 25 in sequence).

<br/>
Expand Down

0 comments on commit 3679f5d

Please sign in to comment.