eg I have a type E with following statements
const GraphqlISODate = require('graphql-iso-date');
const {GraphQLDate} = GraphqlISODate;
module.exports = gql`
type E {
...
purchaseDate: GraphQLDate
}
`
But I got error with GraphQLDate not found, how can I resolved it?