(where)
| 128 | } |
| 129 | |
| 130 | export function applyDeviceTokenExists(where) { |
| 131 | where = structuredClone(where); |
| 132 | if (!Object.prototype.hasOwnProperty.call(where, 'deviceToken')) { |
| 133 | where['deviceToken'] = { $exists: true }; |
| 134 | } |
| 135 | return where; |
| 136 | } |