| 159 | } |
| 160 | |
| 161 | type iteratorNext struct { |
| 162 | qs *QuadStore |
| 163 | collection string |
| 164 | limit int64 |
| 165 | constraint []nosql.FieldFilter |
| 166 | |
| 167 | iter nosql.DocIterator |
| 168 | result graph.Ref |
| 169 | err error |
| 170 | } |
| 171 | |
| 172 | func newIteratorNext(qs *QuadStore, collection string, constraints []nosql.FieldFilter, limit int64) *iteratorNext { |
| 173 | return &iteratorNext{ |
nothing calls this directly
no outgoing calls
no test coverage detected