Kotlin multi platform flow block convert to custom wrapper flow use for ios
I have a kotlin multi platform project which contains apollo graphql api
in this project i have BaseRepository Class and in this class there is a method to execute query or mutations
suspend fun executeQuery(query: Query): ApolloResponse {
val response = getApolloClient().query(query).execute()
checkOperation(response)
return response
}
suspend fun executeMutation(mutation: Mutation): ApolloResponse {
val response =...