Using the @defer directive in Apollo Kotlin

Fetch slower schema fields asynchronously


⚠️ The @defer directive is currently experimental in Apollo Kotlin and enabled for use by default. If you have feedback on it, please let us know via GitHub issues or in the Kotlin Slack community.

Beginning with version 3.6.0, Apollo Kotlin provides experimental support of the @defer directive, which enables your queries to receive data for specific fields asynchronously. This is helpful whenever some fields in a query take much longer to resolve than the others.

For example, let's say we're building a social media application that can quickly fetch a user's basic profile information, but retrieving that user's friends takes longer. If we include all of those fields in a single query, we want to be able to display the profile information as soon as it's available, instead of waiting for the friend fields to resolve.

To achieve this, we can apply the @defer directive to an in-line fragment that contains all slow-resolving fields related to friend data:

GraphQL
1query PersonQuery($personId: ID!) {
2  person(id: $personId) {
3    # Basic fields (fast)
4    id
5    firstName
6    lastName
7
8    # highlight-start
9    # Friend fields (slower)
10    ... on User @defer {
11      friends {
12        id
13      }
14    }
15    # highlight-end
16  }
17}

In the generated code for this query, the onUser field for the fragment will be nullable. That is because when the initial payload is received from the server, the fields of the fragment are not yet present. A Person will be emitted with only the basic fields filled in.

When the fields of the fragment are available, a new Person will be emitted, this time with the onUser field present and filled with the fields of the fragment.

Kotlin
1apolloClient.query(PersonQuery(personId)).toFlow().collect {
2  println("Received: $it")
3  if (it.dataAssertNoErrors.person.onUser == null) {
4    // Initial payload: basic info only
5    // ...
6  } else {
7    // Subsequent payload: with friends
8    // ...
9  }
10}

Will print something like this:

Text
1Received: Person(id=1, firstName=John, lastName=Doe, onUser=null))
2Received: Person(id=1, firstName=John, lastName=Doe, onUser=OnUser(friends=[Friend(id=2), Friend(id=3)]))

Limitations/known issues

  • @defer cannot be used with responseBased codegen.

  • Some servers might send an empty payload to signal the end of the stream. In such a case you will receive an extra terminal emission. You can filter it out by using distinct():

Kotlin
1apolloClient.query(MyQuery()).toFlow()
2    .distinct() // filter out duplicates
3    .collect { /* ... */ }

Edit on GitHub

Forums