> For the complete documentation index, see [llms.txt](https://aegion-dynamic.gitbook.io/nimbus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aegion-dynamic.gitbook.io/nimbus/code-practices/typescript-graphql-patterns.md).

# Typescript GraphQL Patterns

## Query

```tsx
const queryClient = useQueryClient();

const { data } = useQuery(getQueryParams(GetOrganizationsDocument, {}, "test-jwt-token"));
```

## Mutation

```tsx
// Add code here
```
