(ctx context.Context)
| 331 | } |
| 332 | |
| 333 | func (f *fileClient) CountIndexableFiles(ctx context.Context) (int, error) { |
| 334 | return f.indexableFilesQuery().Count(ctx) |
| 335 | } |
| 336 | |
| 337 | func (f *fileClient) ListIndexableFiles(ctx context.Context, afterID, limit int) ([]*ent.File, error) { |
| 338 | q := f.indexableFilesQuery() |
nothing calls this directly
no test coverage detected