We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Using the DateType schema field type generates a GraphQL type of Time, but that object is never defined in the schema file.
DateType
Time
// foo_schema.ts const FooSchema = new EntSchema({ date: DateType({}); }
# schema.gql type Foo implements Node { date: Time! }