Quads is a shape representing a quads query
| 52 | |
| 53 | // Quads is a shape representing a quads query |
| 54 | type Quads struct { |
| 55 | Links []Linkage // filters to select quads |
| 56 | Limit int64 // limits a number of documents |
| 57 | } |
| 58 | |
| 59 | func (s Quads) BuildIterator(qs graph.QuadStore) graph.Iterator { |
| 60 | db, ok := qs.(*QuadStore) |
nothing calls this directly
no outgoing calls
no test coverage detected