drizzle-graphql-plus 0.8.18 → 0.8.19
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/index.cjs +1 -1
- package/index.cjs.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2346,7 +2346,7 @@ var columnToSDL = (column, columnName, tableName, forceNullable = false) => {
|
|
|
2346
2346
|
break;
|
|
2347
2347
|
}
|
|
2348
2348
|
}
|
|
2349
|
-
if (!forceNullable && column.notNull
|
|
2349
|
+
if (!forceNullable && column.notNull) {
|
|
2350
2350
|
return `${baseType}!`;
|
|
2351
2351
|
}
|
|
2352
2352
|
return baseType;
|