Nimbus
  • Introduction
  • Learning Prerequisites
  • How to use this document
  • Getting Started
    • Environment Setup
    • Running Hello World
    • Understanding Application Architecture
    • Anatomy of a Nimbus Project
    • Project Control Documents
  • Frontend Development
    • UI Development Process
    • UI Component Documentation
  • Data Pipeline Development
    • Default Package Layout
  • Server-side Development
    • Creating the Application Data Architecture
    • Core API
      • Authentication
      • Files
      • Schemas
      • Tasks & Queues
      • Compute
  • Code Practices
    • Typescript GraphQL Patterns
    • Utilizing React Hook Forms
    • React Component Structure
    • Helper Tools
      • Data Generator
      • JWT Token Generator
Powered by GitBook
On this page
  • Query
  • Mutation
  1. Code Practices

Typescript GraphQL Patterns

Query

const queryClient = useQueryClient();

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

Mutation

// Add code here
PreviousComputeNextUtilizing React Hook Forms

Last updated 11 months ago