From 79f539d90b0f18b44c5ee6af08aeda6adfb08612 Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Wed, 16 May 2018 13:54:46 -0700 Subject: Update readme --- README.md | 4 ++-- 1 file 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))) -- cgit v1.2.3