Skip to main content

React Query

Installโ€‹

info

This generator is a prerelease and may have breaking changes in future versions.

npm install @basketry/react-query@alpha

Basic Usageโ€‹

basketry.config.json
{
"source": "petstore.json",
"parser": "@basketry/openapi-3",
"generators": ["@basketry/react-query"],
"output": "src"
}

File Structureโ€‹

This generator will create React Query schemas for all the API schemas defined in the source file.

By default, the file will be nested within a directory named after the API major version. This behavior can be disabled by using the includeVersion option from the Typescript Generator.

my-project/
โ”œโ”€โ”€ node_modules/
โ”œโ”€โ”€ src/
โ”‚ โ”œโ”€โ”€ v1/ <-- generated
โ”‚ โ”‚ โ””โ”€โ”€ hooks <-- generated
โ”‚ โ”‚ โ”œโ”€โ”€ pets.tsx <-- generated
โ”‚ โ”‚ โ”œโ”€โ”€ store.tsx <-- generated
โ”‚ โ”‚ โ””โ”€โ”€ users.tsx <-- generated
โ”‚ โ””โ”€โ”€ index.ts
โ”œโ”€โ”€ .gitignore
โ”œโ”€โ”€ basketry.config.json
โ”œโ”€โ”€ package.json
โ”œโ”€โ”€ petstore.json
โ””โ”€โ”€ README.md

Optionsโ€‹

This generator depends on the @basketry/typescript generator and all of their applied options will also apply to files emitted by this generator.

See:

The @basketry/react-query generator does not accept any of its own options.

Dependenciesโ€‹

The generated file contains code that depends on the @tanstack/react-query package that is not included by default. You will need to install it separately.

npm install @tanstack/react-query