Vite Quickstart
This quickstart guide will show you how to use WunderGraph with Vite using our SWR client.
Creating a new WunderGraph project with Vite
We'll use the Vite example to get started. This example is a basic Vite application that uses WunderGraph to fetch data from the SpaceX GraphQL API .
Start Vite and WunderGraph
WunderGraph will now do some code generation and start the WunderNode and the Vite dev server. A new browser window will open at http://localhost:5173 . You should see the WunderGraph & Vite example homepage with the JSON result of the Dragons operation.
Configure WunderGraph
WunderGraph lives in the .wundergraph
directory by default. This is where you can configure your WunderGraph application and write your operations.
Let's take a look at the default configuration open .wundergraph/wundergraph.config.ts
.
You can see that we have a single API configured, which is the SpaceX GraphQL API .
The API is introspected and added to the WunderGraph virtual graph, as you can see here:
The difference between this configuration and the one in the 1-minute quickstart is the addition of the TypeScript client to the code generators. This will generate the typesafe client that we need to set up SWR.
Open src/lib/wundergraph.ts
, you will see the following code:
We initate the WunderGraph client and create the SWR hooks that we will use in our application.
Now let's take a look at the operations.
Operations
Operations are written in the .wundergraph/operations
directory. They can be written in Graphql or TypeScript. Let's check out the Dragons operation, open .wundergraph/operations/Dragons.graphql
.
This simply fetches the name and active status of all the SpaceX dragons, we can run this operation in Vite by using the SWR hooks.
Calling the operation in Vite
Open pages/index.tsx
, there you will find the following code:
The operation name is the name of the file in the operations directory, without the extension. The useQuery
hook will return the result of the operation.
Let's modify the Dragons operation and add a limit parameter and return extra fields. Open .wundergraph/operations/Dragons.graphql
and change it to:
The WunderGraph server will automatically pick up on the changes and re-generate the types. Go back to pages/index.tsx
and you will see that the Dragons
operation now has a required limit
input parameter.
Refresh the page in your browser, the result will look like this:
TypeScript Operations
WunderGraph allows you to write your operation using TypeScript. TypeScript Operations are a great way to use WunderGraph as a fully featured backend framework. Let's find out how to write a TypeScript operation.
Open .wundergraph/operations/users/get.ts
This operation will return a user with the given id. We simply return a plain object here, but you can also return a database model or any other data type. We're using Zod to create the input schema, this will make sure that the input is validated before it reaches the handler.
Open src/components/users/User.tsx
You can call TypeScript operations just like Graphql operations, fully type safe. Note that the operation name is users/get
, this is the path to the operation file, without the extension. We use filebased routing for operations, this allows you to keep your operations organized.
What's next?
Wunderbar! You've added your first Graphql API to Vite. Next up you might want to add a database, authentication and support uploads to turn Vite into a full stack powerhouse 😎.
Guides
Learn more advanced topics in our guides and get comfortable with WunderGraph.
More Examples
Have a look at other examples we provide, to get a better understanding of WunderGraph.
Want to know more about WunderGraph?
If you're not yet sure what kind of problems WunderGraph can solve for you, check out the different use cases we support, and the different features we provide. You might also be interested to learn more about the architecture of WunderGraph. If you haven't read our Manifesto yet, it's a great way to better understand what we're working on and why.
If you've got questions, please join our Discord community or contact us.