aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@driver.xyz>2018-05-16 13:54:46 -0700
committerJakob Odersky <jakob@driver.xyz>2018-05-16 13:54:46 -0700
commit79f539d90b0f18b44c5ee6af08aeda6adfb08612 (patch)
tree18125d8173743b31c4532e952dfe063998b987f9
parent3062cba30330236fb9ff6641b71dc278c124d3eb (diff)
downloadrest-query-79f539d90b0f18b44c5ee6af08aeda6adfb08612.tar.gz
rest-query-79f539d90b0f18b44c5ee6af08aeda6adfb08612.tar.bz2
rest-query-79f539d90b0f18b44c5ee6af08aeda6adfb08612.zip
Update readme
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 11b3add..24398f0 100644
--- a/README.md
+++ b/README.md
@@ -5,10 +5,10 @@ Supports ANDs and ORs, pagination and sorting.
Example of the REST request applying filtering:
```
-https://treatment-matching-api/v1/patient?filters=status+EQ+New&filters=assignee+EQ+null&pageNumber=1&pageSize=20&sort=lastUpdate
+https://example.org/v1/tasks?filters=status+EQ+New&filters=assignee+EQ+null&pageNumber=1&pageSize=20&sort=lastUpdate
```
-Queries can be build in the code as well (e.g., for testing):
+Queries can be built in the code as well (e.g., for testing):
```
SearchFilterExpr.Atom.NAry("id", In, objects.map(x => Long.box(x.id)))