You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to filter data using two conditions from the same column.
For instance am filtering data when enumerator name is samwata or amwata from enumerator_name column using the following query.
This only filters data with enumerator name samwata only but it does not include data with enumarator name as amwata
I also tried to separate the conditions to different dictionaries but the result is the same
I want to filter data using two conditions from the same column.
For instance am filtering data when enumerator name is
samwata
oramwata
fromenumerator_name
column using the following query.https://api.ona.io/api/v1/data/531845?query={"$or":[{"enumerator_name":"amwata","enumerator_name":"samwata"}]}
This only filters data with enumerator name
samwata
only but it does not include data with enumarator name asamwata
I also tried to separate the conditions to different dictionaries but the result is the same
https://api.ona.io/api/v1/data/531845?query={"$or":[{"enumerator_name":"amwata"}, {"enumerator_name":"samwata"}]}
The text was updated successfully, but these errors were encountered: