Using the `DateType` schema field type generates a GraphQL type of `Time`, but that object is never defined in the schema file. ```js // foo_schema.ts const FooSchema = new EntSchema({ date: DateType({}); } ``` ```graphql # schema.gql type Foo implements Node { date: Time! } ```