toResponseJson
fun Operation.Data.toResponseJson(customScalarAdapters: CustomScalarAdapters = CustomScalarAdapters.Empty): String
Serializes the given Data
to a successful GraphQL response:
{
"data": ...
}
Content copied to clipboard
Note: this method uses reflection to lookup the adapter. If you are using R8, add the following rules:
-keep class ** implements com.apollographql.apollo.api.Operation$Data
-keep class **.*_ResponseAdapter$Data {
public static ** INSTANCE;
}
Content copied to clipboard
Parameters
customScalarAdapters
the adapters to use for custom scalars