(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions)
| 1103 | } |
| 1104 | |
| 1105 | func (tx *Transaction) Fetch(s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions) (*schema.Resource, error) { |
| 1106 | return tx.FetchContext(context.Background(), s, filter, options) |
| 1107 | } |
| 1108 | |
| 1109 | //Fetch resources by ID in the db |
| 1110 | func (tx *Transaction) FetchContext(ctx context.Context, s *schema.Schema, filter transaction.Filter, options *transaction.ViewOptions) (*schema.Resource, error) { |
nothing calls this directly
no test coverage detected