The parseLiteral method is called twice ``` const express_graphql = require('express-graphql') var { buildSchema } = require('graphql') var OddType = new GraphQLScalarType({ name: 'Odd', parseLiteral(ast) { console. log('this print twice before continue with the resolver') return null } } ```