@netlify/content-engine
Version:
27 lines • 745 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.internalTypeNames = exports.builtInScalarTypeNames = exports.builtInTypeDefinitions = void 0;
const graphql_1 = require("graphql");
const allSdlTypes = [];
const builtInTypeDefinitions = () => allSdlTypes.map((type) => (0, graphql_1.parse)(type));
exports.builtInTypeDefinitions = builtInTypeDefinitions;
exports.builtInScalarTypeNames = [
`Boolean`,
`Date`,
`Float`,
`ID`,
`Int`,
`JSON`,
`String`,
`GatsbyImageData`,
];
exports.internalTypeNames = [
...exports.builtInScalarTypeNames,
`Buffer`,
`Internal`,
`InternalInput`,
`Node`,
`NodeInput`,
`Query`,
];
//# sourceMappingURL=built-in-types.js.map
;