Suspense and Mutations
<Suspense>, and I'm trying to understand how it can (and if it should) be used with mutations. For example, we have a file upload that is being handled with a mutation. When the mutation is in progress/file is uploading, we want to show a loading indicator. Can <Suspense/> be used here somehow? Or, since this is a mutation, it needs to use conditional rendering with the isPending variable?