Fix for JSON attribute types in GraphQL

Fixes #1476
This commit is contained in:
Erin Dachtler 2018-07-12 12:37:19 -07:00 committed by GitHub
parent 2482d5488f
commit c0554e8571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,6 +167,9 @@ module.exports = {
case 'float':
type = 'Float';
break;
case 'json':
type = 'JSON';
break;
case 'enumeration':
type = this.convertEnumType(definition, modelName, attributeName);
break;