Apollo android migartion to apollo kotlin 3.8.2

Hello, because of the migration i have to replace

fun <T> T.toInput() with Optional.presentIfNotNull(this)

and fun <T : Any> T.toInput() with Optional.Present(this)

replace toInput extensions will be really hard when you using it in like 100 of files
you cant replace it with find and replace because you cant distict nullable and nonNull values so is there any other way other than manually replace it?

Hi :wave: I think you can define your own extension that does the same as what toInput() was doing and then you can find and replace the import?