0.3.33 • Published 6 days ago

@wundergraph/svelte-query v0.3.33

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
6 days ago

WunderGraph Svelte Query Integration

wunderctl

This package provides a type-safe integration of @tanstack/svelte-query with WunderGraph. Svelte Query is a data fetching library for Svelte apps. With simple utilities, you can significantly simplify the data fetching logic in your project. And it also covered in all aspects of speed, correctness, and stability to help you build better experiences.

Warning: Only works with WunderGraph.

Getting Started

npm install @wundergraph/svelte-query @tanstack/svelte-query

Before you can use the utilities, you need to modify your code generation to include the base typescript client.

// wundergraph.config.ts
configureWunderGraphApplication({
  // ... omitted for brevity
  codeGenerators: [
    {
      templates: [templates.typescript.client],
      // the location where you want to generate the client
      path: '../src/components/generated',
    },
  ],
});

Second, run wunderctl generate to generate the code.

Now you can use the utility functions.

import { createSvelteClient } from '@wundergraph/svelte-query';
import { createClient } from '../generated/client';
import type { Operations } from '../generated/client';

const client = createClient(); // Typesafe WunderGraph client

// These utility functions needs to be imported into your app
export const { createQuery, createFileUpload, createMutation, createSubscription, getAuth, getUser, queryKey } =
  createSvelteClient<Operations>(client);

Now, in your svelte layout setup Svelte Query Provider such that it is always wrapping above the rest of the app.

<script>
	import Header from './Header.svelte';
	import { browser } from '$app/environment'
	import './styles.css';
	import { QueryClient, QueryClientProvider } from '@tanstack/svelte-query'

	const queryClient = new QueryClient({
		defaultOptions: {
			queries: {
				enabled: browser,
			},
		},
	})
</script>

<div class="app">
  <QueryClientProvider client={queryClient}>
    <slot />
  </QueryClientProvider>
</div>

Now you can use svelte-query to call your wundergraph operations!

<script lang="ts">
	import { createQuery } from '../lib/wundergraph';

	const query = createQuery({
		operationName: "Starwars",
	})
</script>

<div class="counter">
	<h1>Simple Query</h1>
	<div>
		{#if $query.isLoading}
			Loading...
		{/if}
		{#if $query.error}
			An error has occurred:
			{$query.error.message}
		{/if}
		{#if $query.isSuccess}
      <div>
        <pre>{JSON.stringify($query.data.starwars_allPeople)}</pre>
      </div>
    {/if}
	</div>
</div>

createQuery

createQuery({
  operationName: 'Weather',
  input: { forCity: city },
});

createQuery (Live query)

createQuery({
  operationName: 'Weather',
  input: { forCity: city },
  liveQuery: true,
});

createSubscription

createSubscription({
  operationName: 'Weather',
  input: {
    forCity: 'Berlin',
  },
});

createMutation

const mutation = createMutation({
  operationName: 'SetName',
});

$mutation.mutate({ name: 'WunderGraph' });

await $mutation.mutateAsync({ name: 'WunderGraph' });

createFileUpload

const fileUploader = createFileUpload();

$fileUploader.upload({
  provider: 'minio',
  files: new FileList(),
});

await $fileUploader.upload({
  provider: 'minio',
  files: new FileList(),
});

$fileUploader.fileKeys; // files that have been uploaded

getAuth

const auth = getAuth();

$auth.login('github');

$auth.logout({ logoutOpenidConnectProvider: true });

getUser

const userQuery = getUser();

queryKey

You can use the queryKey helper function to create a unique key for the query in a typesafe way. This is useful if you want to invalidate the query after mutating.

const queryClient = useQueryClient();

const mutation = createMutation({
  operationName: 'SetName',
  onSuccess() {
    queryClient.invalidateQueries(queryKey({ operationName: 'Profile' }));
  },
});

$mutation.mutate({ name: 'WunderGraph' });

SSR

If you are working with SvelteKit, this package provides prefetchQuery utility to help with SSR

export const load: PageLoad = async ({ parent }) => {
  const { queryClient } = await parent();

  await prefetchQuery(
    {
      operationName: 'Dragons',
    },
    queryClient
  );
};

This implementation is based on TanStack Svelte Query's prefetchQuery approach

Options

You can use all available options from Svelte Query with the generated functions. Due to the fact that we use the operationName + variables as key, you can't use the key option as usual. In order to use conditional-fetching you can use the enabled option.

Global Configuration

You can configure the utilities globally by using the Svelte Query's QueryClient config.

0.3.33

6 days ago

0.3.32

1 month ago

0.3.31

2 months ago

0.3.30

3 months ago

0.3.29

4 months ago

0.3.28

5 months ago

0.3.27

5 months ago

0.3.26

6 months ago

0.3.20

7 months ago

0.3.25

6 months ago

0.3.24

6 months ago

0.3.23

7 months ago

0.3.22

7 months ago

0.3.21

7 months ago

0.3.0

10 months ago

0.3.19

7 months ago

0.3.18

7 months ago

0.3.6

10 months ago

0.3.5

10 months ago

0.3.8

9 months ago

0.3.7

9 months ago

0.3.2

10 months ago

0.3.1

10 months ago

0.3.4

10 months ago

0.3.3

10 months ago

0.3.9

9 months ago

0.3.17

7 months ago

0.3.16

8 months ago

0.3.15

8 months ago

0.3.14

8 months ago

0.3.13

9 months ago

0.2.45

10 months ago

0.3.12

9 months ago

0.2.44

10 months ago

0.3.11

9 months ago

0.2.43

11 months ago

0.3.10

9 months ago

0.2.42

11 months ago

0.2.41

11 months ago

0.2.40

11 months ago

0.2.27

1 year ago

0.2.26

1 year ago

0.2.25

1 year ago

0.2.24

1 year ago

0.2.23

1 year ago

0.2.22

1 year ago

0.2.39

12 months ago

0.2.30

12 months ago

0.2.38

12 months ago

0.2.37

12 months ago

0.2.36

12 months ago

0.2.35

12 months ago

0.2.34

12 months ago

0.2.33

12 months ago

0.2.32

12 months ago

0.2.31

12 months ago

0.2.29

12 months ago

0.2.28

1 year ago

0.2.21

1 year ago

0.2.20

1 year ago

0.2.19

1 year ago

0.2.18

1 year ago

0.2.17

1 year ago

0.2.16

1 year ago

0.2.15

1 year ago

0.2.14

1 year ago

0.2.13

1 year ago

0.2.12

1 year ago

0.2.11

1 year ago

0.2.10

1 year ago

0.2.9

1 year ago

0.2.8

1 year ago

0.2.7

1 year ago

0.2.6

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.0

1 year ago

0.0.1

1 year ago