toJson

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

Serializes the given Data to a String.

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


expect fun Operation.Data.toJson(jsonWriter: JsonWriter, customScalarAdapters: CustomScalarAdapters = CustomScalarAdapters.Empty)

Serializes the given Data to the given JsonWriter.

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