https://kotlinlang.org logo
Title
u

user

07/03/2022, 10:11 PM
Apollo 3.3.2 kotlin escape from optional values in kmm i have a kmm project which using apollo graphql version 3.3.2 Everything okay with the previous apollo version but the new version i have to set variables with Optional.presentIfNotNull($variable) like this. val officeId = QueryTrainingsForUserWhereWhereConditions( Optional.presentIfNotNull(TrainingColumn.OFFICE_ID), Optional.presentIfNotNull(SQLOperator.IS_NULL) ) Before when i use apollo v2 it was like this val officeId =...