Query

public struct Query

Represents an individual query to be applied, consisting of a key (left hand), an operator and a value (right hand). If the operator is blank, then the key is assumed to be a function e.g.

 val q = Query("bygroupid", null, "12345")
 Log.i("example", "${q.toString()}")

would output example - bygroupd(12345)