(collection: string, key?: string)
| 1164 | |
| 1165 | const whereFor = |
| 1166 | (collection: string, key?: string): CoreWhere => |
| 1167 | (b: AnyCb) => |
| 1168 | b.and( |
| 1169 | b("plugin_id", "=", input.pluginId), |
| 1170 | b("collection", "=", collection), |
| 1171 | key === undefined ? true : b("key", "=", key), |
| 1172 | ); |
| 1173 | |
| 1174 | const whereOwner = (owner: Owner, collection: string, key: string): CoreWhere => { |
| 1175 | const os = ownerSubject(owner); |
no outgoing calls
no test coverage detected