Enumeration Casegraphqlswift.graphql 3.0.0GraphQL
iso8601
Encode the Date
as an ISO-8601-formatted string (in RFC 3339 format).
- iOS
- 10.0+
- macOS
- 10.12+
- tvOS
- 10.0+
- watchOS
- 3.0+
case iso8601
Other cases
case deferredToDate
Defer to
Date
for choosing an encoding. This is the default strategy.case secondsSince1970
Encode the
Date
as a UNIX timestamp (as a Map number).case millisecondsSince1970
Encode the
Date
as UNIX millisecond timestamp (as a Map number).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.