mirror of
https://github.com/strapi/strapi.git
synced 2025-08-08 00:37:38 +00:00
Merge pull request #1567 from download13/patch-1
Fix for JSON attribute types in GraphQL
This commit is contained in:
commit
ada58ec643
@ -168,6 +168,9 @@ module.exports = {
|
|||||||
case 'float':
|
case 'float':
|
||||||
type = 'Float';
|
type = 'Float';
|
||||||
break;
|
break;
|
||||||
|
case 'json':
|
||||||
|
type = 'JSON';
|
||||||
|
break;
|
||||||
case 'time':
|
case 'time':
|
||||||
case 'date':
|
case 'date':
|
||||||
case 'datetime':
|
case 'datetime':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user