NO SQL Storage.
I was trying to create a query with multipel conditions like
NAME = "SAM" AND (AGE = 15 OR AGE = 16 OR AGE = 25)
How can I do this to retrieve from the cloud and how to continue with below :
Query q1 = QueryBuilder.build("NAME", "SAM", Operator.EQUALS);
Query q2 = QueryBuilder.build("AGE", 15, Operator.EQUALS);
Query query = QueryBuilder.compoundOperator(q1, Operator.AND, q2);
hwo how to add the remaining Ages too into the same query ?