toResponseJson

fun Operation.Data.toResponseJson(customScalarAdapters: CustomScalarAdapters = CustomScalarAdapters.Empty): String

Serializes the given Data to a successful GraphQL response:

{
"data": ...
}

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;
}

Parameters

customScalarAdapters

the adapters to use for custom scalars