aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)))