diff --git a/packages/vulcan-lib/lib/modules/graphql.js b/packages/vulcan-lib/lib/modules/graphql.js index e3e5e5a38..37a70f966 100644 --- a/packages/vulcan-lib/lib/modules/graphql.js +++ b/packages/vulcan-lib/lib/modules/graphql.js @@ -20,8 +20,9 @@ const getGraphQLType = (schema, fieldName) => { const type = field.type.singleType; const typeName = typeof type === 'object' ? 'Object' : typeof type === 'function' ? type.name : type; + // intl fields should be treated as strings if (field.intl) { - return 'IntlString'; + return 'String'; } switch (typeName) {