(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions, pg *pagination.Paginator)
| 920 | } |
| 921 | |
| 922 | func (tx *Transaction) List(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions, pg *pagination.Paginator) (list []*schema.Resource, total uint64, err error) { |
| 923 | return tx.ListContext(context.Background(), s, filter, options, pg) |
| 924 | } |
| 925 | |
| 926 | //List resources in the db |
| 927 | func (tx *Transaction) 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