Query represents a query over a collection.
| 27 | |
| 28 | // Query represents a query over a collection. |
| 29 | type Query struct { |
| 30 | coll *Collection |
| 31 | dq *driver.Query |
| 32 | err error |
| 33 | } |
| 34 | |
| 35 | // Query creates a new Query over the collection. |
| 36 | func (c *Collection) Query() *Query { |
nothing calls this directly
no outgoing calls
no test coverage detected