dhis2-devs-core team mailing list archive
-
dhis2-devs-core team
-
Mailing list archive
-
Message #00290
Re: Change from OR to AND in object filter queries
Makes sense. But it sort of works like that already? E.g:
1)
https://apps.dhis2.org/demo/api/dataElements.json?paging=false&filter=dataElementGroups.id:eq:qfxEYY9xAl6
returns all members of the ANC group (11x)
2)
https://apps.dhis2.org/demo/api/dataElements.json?paging=false&filter=name:like:dose
returns all data elements with a name containing "dose" (27x)
3)
https://apps.dhis2.org/demo/api/dataElements.json?paging=false&filter=dataElementGroups.id:eq:qfxEYY9xAl6&filter=name:like:dose
returns the data elements that are in query 1 AND query 2 (only 4x)
On Wed, Jun 3, 2015 at 6:46 AM, Morten Olav Hansen <mortenoh@xxxxxxxxx>
wrote:
> Hi everyone
>
> One of my tasks for 2.20 is to better handle AND/OR in object filter
> queries. As part of this, we are considering changing the default from OR
> to AND, which means that something like this:
>
> ?filter=id:eq:1&filter=id:eq:2
>
> Will not work anymore, you will have to use:
>
> ?filter=id:in:[1,2]
>
> I will backport this, so it works the same in 2.19 (so we don't have
> different semantics in 2.19 vs 2.20), and in 2.20 there will probably be
> introduced some kind of OR operator also (can still be useful for some
> cases)
>
> Doing this, also means that you can do proper filtering on multiple
> properties, e.g.:
>
> /api/dataElements?fields=*&filter=domainType:eq:TRACKER&filter=numberType:eq:int
>
> Which will give the results where domain is TRACKER -AND- number type is
> int.
>
> If we all agree on this, I will also send out a notice on the mailing
> lists to notify external app developers.
>
> --
> Morten
>
> --
> Mailing list: https://launchpad.net/~dhis2-devs-core
> Post to : dhis2-devs-core@xxxxxxxxxxxxxxxxxxx
> Unsubscribe : https://launchpad.net/~dhis2-devs-core
> More help : https://help.launchpad.net/ListHelp
>
>
Follow ups
References