Enumeration Casegraphqlswift.graphql 3.0.0GraphQL
custom(_:)
Provide a custom conversion from the key in the encoded Map to the keys specified by the decoded types. The full path to the current decoding position is provided for context (in case you need to locate this key within the payload). The returned key is used in place of the last component in the coding path before decoding. If the result of the conversion is a duplicate key, then only one value will be present in the container for the type to decode from.
MapCoder.swift:1166case custom((_ codingPath: [CodingKey]) -> CodingKey)
Other cases
case useDefaultKeys
Use the keys specified by each type. This is the default strategy.
case convertFromSnakeCase
Convert from “snake_case_keys” to “camelCaseKeys” before attempting to match a key with the one specified by each type.