pqb 0.47.3 → 0.47.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3000,12 +3000,7 @@ const runAfterCommit = async (afterCommit, result) => {
3000
3000
  const applyBatchTransforms = (q, batches) => {
3001
3001
  if (q.transform) {
3002
3002
  for (const item of batches) {
3003
- item.parent[item.key] = orchidCore.applyTransforms(
3004
- q,
3005
- q.returnType,
3006
- q.transform,
3007
- item.data
3008
- );
3003
+ item.parent[item.key] = item.data === null ? void 0 : orchidCore.applyTransforms(q, q.returnType, q.transform, item.data);
3009
3004
  }
3010
3005
  }
3011
3006
  };