(collection: string, opts?: ListOpts)
| 55 | getOne<T>(collection: string, id: string): Promise<T | null>; |
| 56 | getFirst<T>(collection: string, filter: string): Promise<T | null>; |
| 57 | list<T>(collection: string, opts?: ListOpts): Promise<ListResult<T>>; |
| 58 | create<T>(collection: string, record: Record<string, unknown>): Promise<T>; |
| 59 | update<T>( |
| 60 | collection: string, |
no outgoing calls
no test coverage detected