Handling nullability and errors
Make your queries even more typesafe
Introduction
This section is a high level description of nullability and errors in GraphQL and the problem it causes for app developers. For the proposed solution, skip directly to the @semanticNonNull section.
GraphQL does not have a Result
type. If a field errors, it is set to null
in the JSON response and an error is added to the errors
array.
From the schema alone, it is impossible to tell if null
is a valid business value or only happens for errors:
1type User {
2 id: ID!
3 # Should the UI deal with user without a name here? It's impossible to tell.
4 name: String
5 avatarUrl: String
6}
The GraphQL best practices recommend making fields nullable by default to account for errors.
From graphql.org:
In a GraphQL type system, every field is nullable by default. This is because there are many things that can go awry in a networked service backed by databases and other services.
For an example, the following query:
1query GetUser {
2 user {
3 id
4 name
5 avatarUrl
6 }
7}
receives a response like so in the case of an error:
1{
2 "data": {
3 "user": {
4 "id": "1001",
5 "name": null,
6 "avatarUrl": "https://example.com/pic.png"
7 }
8 },
9 "errors": [
10 {
11 "message": "Cannot resolve user.name",
12 "path": ["user", "name"]
13 }
14 ]
15}
This nullable default has one major drawback for frontend developers. It requires to carefully check every field in your UI code.
Sometimes it's not clear how to handle the different cases:
1@Composable
2fun User(user: GetUserQuery.User) {
3 if (user.name != null) {
4 Text(text = user.name)
5 } else {
6 // What to do here?
7 // Is it an error?
8 // Is it a true null?
9 // Should I display a placeholder? an error? hide the view?
10 }
11}
When there are a lot of fields, handling the null
case on every one of them becomes really tedious.
Wouldn't it be nice if instead the UI could decide to handle errors more globally and display a general error if any field in an User
fails?
Apollo Kotlin offers nullability directives to deal with this situation:
These tools change the GraphQL default from "handle every field error" to "opt-in the errors you want to handle".
Import the nullability directives
Nullability directives are experimental. You need to import them using the @link
directive:
1extend schema @link(
2 url: "https://specs.apollo.dev/nullability/v0.4",
3 # Note: other directives are needed later on and added here for convenience
4 import: ["@semanticNonNull", "@semanticNonNullField", "@catch", "CatchTo", "@catchByDefault"]
5)
@semanticNonNull
@semanticNonNull
introduces a new type in the GraphQL type system.
A @semanticNonNull
type can never be null except if there is an error in the errors array.
Use it in your schema:
1type User {
2 id: ID!
3 # name is never null unless there is an error
4 name: String @semanticNonNull
5 # avatarUrl may be null even if there is no error. In that case the UI should be prepared to display a placeholder.
6 avatarUrl: String
7}
@semanticNonNull
is a directive so that it can be introduced without breaking the current GraphQL tooling but the ultimate goal is to introduce new syntax. See the nullability working group discussion for more details.For fields of List
type, @semanticNonNull
applies only to the first level. If you need to apply it to a given level, use the levels
argument:
1type User {
2 # adminRoles may be null if the user is not an admin
3 # if the user is an admin, adminRoles[i] is never null unless there is also an error
4 adminRoles: [AdminRole] @semanticNonNull(levels: [1])
5}
With @semanticNonNull
, a frontend developer knows that a given field will never be null in regular operation and can therefore act accordingly. No need to guess anymore!
Ideally, your backend team annotates their schema with @semanticNonNull
directives so that different frontend teams can benefit from the new type information.
Sometimes this process takes time.
For these situations, you can extend your schema by using @semanticNonNullField
in your extra.graphqls file:
1# Same effect as above but works as a schema extensions
2extend type User @semanticNonNullField(name: "name")
You can later share that file with your backend team and double check that your interpretation of the types is the correct one.
@catch
While @semanticNonNull
is a server directive that describes your data, @catch
is a client directive that defines how to handle errors.
@catch
allows to:
handle errors as
FieldResult<T>
, getting access to the colocated error.throw the error and let another parent field handle it or bubble up to
data == null
.coerce the error to
null
(current GraphQL default).
For fields of List
type, @catch
applies only to the first level. If you need to apply it to a given level, use the levels
argument:
1query GetUser {
2 user {
3 # map friends[i] to FieldResult
4 friends @catch(to: RESULT, level: 1)
5 }
6}
Colocate errors
To get colocated errors, use @catch(to: RESULT)
:
1query GetUser {
2 user {
3 id
4 # map name to FieldResult<String> instead of stopping parsing
5 name @catch(to: RESULT)
6 }
7}
The above query generates the following Kotlin code:
1class User(
2 val id: String,
3 // note how String is not nullable. This is because name
4 // was marked `@semanticNonNull` in the previous section.
5 val name: FieldResult<String>,
6)
Use getOrNull()
to get the value:
1println(user.name.getOrNull()) // "Luke Skywalker"
2// or you can also decide to throw on error
3println(user.name.getOrThrow())
And graphQLErrorOrNull()
to get the colocated error:
1println(user.name.graphQLErrorOrNull()) // "Cannot resolve user.name"
Throw errors
To throw errors, use @catch(to: THROW)
:
1query GetUser {
2 user {
3 id
4 # throw any error
5 name @catch(to: THROW)
6 }
7}
The above query generates the following Kotlin code:
1class User(
2 val id: String,
3 val name: String,
4)
ApolloResponse.exception
.Coerce errors to null
To coerce errors to null
(current GraphQL default), use @catch(to: NULL)
:
1query GetUser {
2 user {
3 id
4 # coerce errors to null
5 name @catch(to: NULL)
6 }
7}
The above query generates the following Kotlin code:
1class User(
2 val id: String,
3 // Note how name is nullable again despite being marked
4 // @semanticNonNull in the schema
5 val name: String?,
6)
ApolloResponse.exception
.@catchByDefault
In order to use the nullability directives, you need to opt in a default catch behaviour for nullable GraphQL fields using @catchByDefault
.
You can choose to map nullable fields to FieldResult
:
1# Errors stop the parsing.
2extend schema @catchByDefault(to: RESULT)
Or throw errors:
1# Errors stop the parsing.
2extend schema @catchByDefault(to: THROW)
Or coerce errors to null
, like the current GraphQL default:
1# Coerce errors to null by default.
2extend schema @catchByDefault(to: NULL)
(Adding @catchByDefault(to: NULL)
is a no-op for codegen that unlocks using @catch
in your operations.)
Migrate to semantic nullability
Semantic nullability is the most useful for schemas that are nullable by default. These are the schemas that require "handling every field error".
In order to change that default to "opt-in the errors you want to handle", you can use the following approach:
import the nullability directives.
Default to coercing to null:
extend schema @catchByDefault(to: NULL)
. This is a no-op to start exploring the directives.Add
@catch
to individual fields, get more comfortable with how it works.When ready to do the big switch, change to
extend schema catchByDefault(to: THROW)
and (at the same time) addquery GetFoo @catchByDefault(to: NULL) {}
on all operations/fragments (this is a no-op).From this moment on, new queries written throw on errors by default.
Remove
query GetFoo @catchByDefault(to: NULL) {}
progressively.
Migrate from @nonnull
If you were using @nonnull
before, you can now use @semanticNonNull
.
@semanticNonNull
, coupled with @catch
is more flexible and also more in line with other frameworks.
For usages in executable documents:
1# Replace
2query GetFoo {
3 foo @nonnull
4}
5
6# With
7query GetFoo {
8 foo @catch(to: THROW)
9}
For usages in schema documents:
1# Replace
2extend type Foo @nonnull(fields: "bar")
3
4# With
5extend type Foo @semanticNonNullField(name: "bar")
If your schema is configured with @catchByDefault(to: NULL)
, you'll also need to update the usages in your executable documents:
1# Add `@catch(to: THROW)`
2query GetFoo {
3 foo @catch(to: THROW)
4}