QueryRelationships reads relation tuples from the storage based on the given filter. It returns an iterator to iterate over the tuples and any error encountered.
(ctx context.Context, tenantID string, filter *base.TupleFilter, snap string, pagination database.CursorPagination)
| 13 | // QueryRelationships reads relation tuples from the storage based on the given filter. |
| 14 | // It returns an iterator to iterate over the tuples and any error encountered. |
| 15 | QueryRelationships(ctx context.Context, tenantID string, filter *base.TupleFilter, snap string, pagination database.CursorPagination) (iterator *database.TupleIterator, err error) |
| 16 | |
| 17 | // ReadRelationships reads relation tuples from the storage based on the given filter and pagination. |
| 18 | // It returns a collection of tuples, a continuous token indicating the position in the data set, and any error encountered. |
no outgoing calls
no test coverage detected