Enumeration Casegraphqlswift.graphql 3.0.0GraphQL
deferredToDate
Defer to Date
for choosing an encoding. This is the default strategy.
case deferredToDate
Other cases
case secondsSince1970
Encode the
Date
as a UNIX timestamp (as a Any number).case millisecondsSince1970
Encode the
Date
as UNIX millisecond timestamp (as a Any number).case iso8601
Encode the
Date
as an ISO-8601-formatted string (in RFC 3339 format).case formatted(DateFormatter)
Encode the
Date
as a string formatted by the given formatter.case custom((Date, Encoder) throws -> Void)
Encode the
Date
as a custom value encoded by the given closure.