Merge pull request #1567 from download13/patch-1

Fix for JSON attribute types in GraphQL
This commit is contained in:
Jim LAURIE 2018-07-23 13:15:10 +02:00 committed by GitHub
commit ada58ec643
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,6 +168,9 @@ module.exports = {
case 'float':
type = 'Float';
break;
case 'json':
type = 'JSON';
break;
case 'time':
case 'date':
case 'datetime':