@prisma/client-engine-runtime 6.9.0-dev.11 → 6.9.0-dev.12

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
@@ -759,6 +759,9 @@ var QueryInterpreter = class _QueryInterpreter {
759
759
  }
760
760
  case "join": {
761
761
  const parent = await this.interpretNode(node.args.parent, queryable, scope, generators);
762
+ if (parent === null) {
763
+ return null;
764
+ }
762
765
  const children = await Promise.all(
763
766
  node.args.children.map(async (joinExpr) => ({
764
767
  joinExpr,
package/dist/index.mjs CHANGED
@@ -714,6 +714,9 @@ var QueryInterpreter = class _QueryInterpreter {
714
714
  }
715
715
  case "join": {
716
716
  const parent = await this.interpretNode(node.args.parent, queryable, scope, generators);
717
+ if (parent === null) {
718
+ return null;
719
+ }
717
720
  const children = await Promise.all(
718
721
  node.args.children.map(async (joinExpr) => ({
719
722
  joinExpr,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-engine-runtime",
3
- "version": "6.9.0-dev.11",
3
+ "version": "6.9.0-dev.12",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -31,8 +31,8 @@
31
31
  "nanoid": "5.1.5",
32
32
  "ulid": "3.0.0",
33
33
  "uuid": "11.1.0",
34
- "@prisma/debug": "6.9.0-dev.11",
35
- "@prisma/driver-adapter-utils": "6.9.0-dev.11"
34
+ "@prisma/debug": "6.9.0-dev.12",
35
+ "@prisma/driver-adapter-utils": "6.9.0-dev.12"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/jest": "29.5.14",