ReadRelationships reads relation tuples from the storage based on the given filter and pagination. It returns a collection of tuples, a continuous token indicating the position in the data set, and any error encountered.
(ctx context.Context, tenantID string, filter *base.TupleFilter, snap string, pagination database.Pagination)
| 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. |
| 19 | ReadRelationships(ctx context.Context, tenantID string, filter *base.TupleFilter, snap string, pagination database.Pagination) (collection *database.TupleCollection, ct database.EncodedContinuousToken, err error) |
| 20 | |
| 21 | // QuerySingleAttribute retrieves a single attribute from the storage based on the given filter. |
| 22 | // It returns the retrieved attribute and any error encountered. |
no outgoing calls
no test coverage detected