(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions, pg *pagination.Paginator)
| 86 | } |
| 87 | |
| 88 | func (tx *CachedTransaction) List(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions, pg *pagination.Paginator) (list []*schema.Resource, total uint64, err error) { |
| 89 | return tx.ListContext(context.Background(), s, filter, options, pg) |
| 90 | } |
| 91 | |
| 92 | //List resources in the db |
| 93 | func (tx *CachedTransaction) ListContext(ctx context.Context, s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions, pg *pagination.Paginator) (list []*schema.Resource, total uint64, err error) { |
nothing calls this directly
no test coverage detected