(collection: string, key?: string)
| 917 | |
| 918 | const whereFor = |
| 919 | (collection: string, key?: string): CoreWhere => |
| 920 | (b: AnyCb) => |
| 921 | b.and( |
| 922 | b("plugin_id", "=", input.pluginId), |
| 923 | b("collection", "=", collection), |
| 924 | key === undefined ? true : b("key", "=", key), |
| 925 | ); |
| 926 | |
| 927 | const whereOwner = (owner: Owner, collection: string, key: string): CoreWhere => { |
| 928 | const os = ownerSubject(owner); |
no outgoing calls
no test coverage detected