Dates in schema should use a specified format
Created by: creachadair
There are a couple of places where schema.graphql specifies date values as type String
. Ideally these should use a more specific type label with a format definition. The DateTime
scalar type is defined to use RFC3339, and we could re-use that; or we could define a separate Date
type (e.g., to be an RFC3339 full-date
).