Using GraphQL variables in Apollo Kotlin
GraphQL supports passing argument values to your operations with variables. This enables you to write a single query that you can reuse with multiple variable values (this is a recommended best practice).
In GraphQL, non-nullable variables are required, and nullable variables are optional. However, because variables are rarely omitted in practice, Apollo Kotlin provides a mechanism to make variables non-optional in generated code. This makes the structure of generated code more straightforward.
Because you might still need to omit variables, the default is to generate them as optional, but you can configure this (for specific variables or globally).
Consider the following GraphQL query with two nullable variables:
query GetTodos($first: Int, $offset: Int) {todos(first: $first, offset: $offset) {idtext}}
Apollo Kotlin generates the following Kotlin code for this query:
class GetTodosQuery(val first: Optional<Int?> = Optional.Absent,val offset: Optional<Int?> = Optional.Absent)
You can then selectively provide or omit variable values like so:
// Omit values for both variablesval query = GetTodosQuery(Optional.Absent, Optional.Absent)// Provide null for both variablesval query = GetTodosQuery(Optional.Present(null), Optional.Present(null))// Send explicit values for both variablesval query = GetTodosQuery(Optional.Present(100), Optional.Present(0))
Making nullable variables non-optional
To disable optional variables globally, update your Gradle config like so:
apollo {service("service") {// ...generateOptionalOperationVariables.set(false)}}
If you do, in the case of the GetTodos
query shown above, Apollo Kotlin now generates the following code:
class GetTodosQuery(val first: Int?, val offset: Int?)
This makes the calling code less verbose to use:
// Provide null for both variablesval query = GetTodosQuery(null, null)// Send explicit values for both variablesval query = GetTodosQuery(100, 0)
If you pass null
as the value for either of these variables, Apollo Kotlin sends null
to the server as the value of that variable instead of omitting it entirely.
Although doing this can simplify your code in most cases, you might still need to omit variables for certain operations. To achieve this, you can allow optional variables on a case-by-case basis with the @optional
directive:
query GetTodos($first: Int @optional, $offset: Int @optional) {todos(first: $first, offset: $offset) {idtext}}
In this case, Apollo Kotlin generates code with Optional
for only these specific variables.