(collection: string, key?: string)
| 1536 | |
| 1537 | const whereFor = |
| 1538 | (collection: string, key?: string): CoreWhere => |
| 1539 | (b: AnyCb) => |
| 1540 | b.and( |
| 1541 | b("plugin_id", "=", input.pluginId), |
| 1542 | b("collection", "=", collection), |
| 1543 | key === undefined ? true : b("key", "=", key), |
| 1544 | ); |
| 1545 | |
| 1546 | const whereOwner = (owner: Owner, collection: string, key: string): CoreWhere => { |
| 1547 | const os = ownerSubject(owner); |
no outgoing calls
no test coverage detected