prisma-client-lib
Advanced tools
Comparing version 1.18.0-beta.8 to 1.18.0-beta.10
@@ -101,2 +101,5 @@ "use strict"; | ||
GraphQLEnumType: function (type) { | ||
if (type.name === 'PrismaDatabase') { | ||
return ""; | ||
} | ||
return _this.renderDescription(type.description) + "export type " + type.name + " = " + type | ||
@@ -272,2 +275,6 @@ .getValues() | ||
return Object.keys(fields) | ||
.filter(function (f) { | ||
var field = fields[f]; | ||
return !(field.name === 'executeRaw' && isMutation); | ||
}) | ||
.map(function (f) { | ||
@@ -274,0 +281,0 @@ var field = fields[f]; |
{ | ||
"name": "prisma-client-lib", | ||
"version": "1.18.0-beta.8", | ||
"version": "1.18.0-beta.10", | ||
"author": "Tim Suchanek <suchanek@prisma.io>", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
Sorry, the diff of this file is not supported yet
189414
2305