Handle loading/errors
As we saw in the previous step, Apollo returned a result object with properties . Among them loading
and error
are common ones that you will need to handle in your app.
@react.componentlet make = () => {let todosResult = TodosQuery.use()switch todosResult {| {loading: true} => <div> {React.string("Loading...")} </div>| {data: Some({todos})} => <TodoPrivateList todos={todos} />| {error: Some(_error)} => <div> {React.string("Error!")} </div>}}
Apollo Query Loading State
When this component mounts, the GraphQL query sent in the background may not have been completed. But we need to handle that temporary state of no data and hence we return some useful text during loading
state.
In this loading state, typically you can do fancy things like displaying a loading spinner.
Apollo Query Error State
Now, the query could also end up in an error
state due to various reasons. Sometimes the graphql query could be wrong, or the server isn't responding. Whatever may be the reason, the user facing UI should show something to convey that an error has occurred.
In this error state, typically you can send these error messages to third-party services to track what went wrong.
All said and done, these are two important states that need to be handled inside your component. What you have written above is basic, but sufficient for this tutorial.
- Build apps and APIs 10x faster
- Built-in authorization and caching
- 8x more performant than hand-rolled APIs