Query creates a new Query over the collection.
()
| 34 | |
| 35 | // Query creates a new Query over the collection. |
| 36 | func (c *Collection) Query() *Query { |
| 37 | return &Query{coll: c, dq: &driver.Query{}} |
| 38 | } |
| 39 | |
| 40 | // Where expresses a condition on the query. |
| 41 | // Valid ops are: "=", ">", "<", ">=", "<=, "in", "not-in". |
no outgoing calls