# Loading utilities
## useQueryLoading
Returns a boolean `Ref` which is `true` if at least one of the queries used by the component is loading.
Example:
```vue
Loading...
{{ one }}
{{ two }}
```
## useMutationLoading
Returns a boolean `Ref` which is `true` if at least one of the mutations used by the component is loading.
## useSubscriptionLoading
Returns a boolean `Ref` which is `true` if at least one of the subscriptions used by the component is loading.
## useGlobalQueryLoading
Returns a boolean `Ref` which is `true` if at least one of the queries in the entire application is loading.
Example:
```vue
```
## useGlobalMutationLoading
Returns a boolean `Ref` which is `true` if at least one of the mutations in the entire application is loading.
## useGlobalSubscriptionLoading
Returns a boolean `Ref` which is `true` if at least one of the subscriptions in the entire application is loading.