@m1212e/rumble 0.12.6 → 0.12.7

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/out/index.js CHANGED
@@ -1182,7 +1182,7 @@ function buildPothosResponseTypeFromGraphQLType({ builder, sqlType, fieldName, n
1182
1182
  //#region lib/helpers/determineDialectFromSchema.ts
1183
1183
  function determineDBDialectFromSchema(schema) {
1184
1184
  const found = /* @__PURE__ */ new Set();
1185
- for (const table of Object.values(schema)) {
1185
+ for (const table of Object.values(schema).map((t) => t.table)) {
1186
1186
  if (typeof table !== "object") continue;
1187
1187
  if (table instanceof PgTable) found.add("postgres");
1188
1188
  else if (table instanceof MySqlTable) found.add("mysql");
@@ -1194,7 +1194,7 @@ function determineDBDialectFromSchema(schema) {
1194
1194
  throw new Error(`Multiple dialects found in schema: ${dialects.join(", ")}`);
1195
1195
  }
1196
1196
  function isPostgresDB(db) {
1197
- return determineDBDialectFromSchema(db._.schema) === "postgres";
1197
+ return determineDBDialectFromSchema(db._.relations) === "postgres";
1198
1198
  }
1199
1199
 
1200
1200
  //#endregion