---
id: overview
title: Overview
---
The `@tanstack/svelte-query` package offers a 1st-class API for using TanStack Query via Svelte.
## Example
Include the QueryClientProvider near the root of your project:
```svelte
```
Then call any function (e.g. createQuery) from any component:
```svelte
{#if $query.isLoading}
Loading...
{:else if $query.isError}
Error: {$query.error.message}
{:else if $query.isSuccess}
{#each $query.data as todo}
{todo.title}
{/each}
{/if}
```
## SvelteKit
If you are using SvelteKit, please have a look at [SSR & SvelteKit](../ssr).
## Available Functions
Svelte Query offers useful functions and components that will make managing server state in Svelte apps easier.
- `createQuery`
- `createQueries`
- `createInfiniteQuery`
- `createMutation`
- `useQueryClient`
- `useIsFetching`
- `useIsMutating`
- `useHydrate`
- ``
- ``
## Important Differences between Svelte Query & React Query
Svelte Query offers an API similar to React Query, but there are some key differences to be mindful of.
- Many of the functions in Svelte Query return a Svelte store. To access values on these stores reactively, you need to prefix the store with a `$`. You can learn more about Svelte stores [here](https://learn.svelte.dev/tutorial/writable-stores).
- If your query or mutation depends on variables, you must use a store for the options. You can read more about this [here](../reactivity).