You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For type mappings in Codegen we can register a mapping in META-INF for a library, so that Codegen automatically knows about the type. We can consider implementing a similar mechanism to register Coercing classes for scalars in InputValueSerializer, so that a user of a generated client API doesn't have to provide the mapping as follows explicitly:
GraphQLQueryRequest graphQLQueryRequest =
new GraphQLQueryRequest(
query,
getEntityProjection(),
Map.of(URI.class, UriScalarImpl.INSTANCE.getCoercing()));
The text was updated successfully, but these errors were encountered:
For type mappings in Codegen we can register a mapping in META-INF for a library, so that Codegen automatically knows about the type. We can consider implementing a similar mechanism to register
Coercing
classes for scalars inInputValueSerializer
, so that a user of a generated client API doesn't have to provide the mapping as follows explicitly:The text was updated successfully, but these errors were encountered: