GraphQL to React Client Generator
@metaengine/graphql-reactConvert GraphQL SDL to React hooks and models with optional TanStack Query (useQuery, useMutation), typed queries, mutations & subscriptions, and the native Fetch API. React 18+.
Pick your registry
The same generator, published to every ecosystem we support. Install however your project expects.
Drive it from the CLI or programmatically
npm ships a zero-config CLI. NuGet ships the same generator as a C# fluent API — same options, same output.
After install, point the CLI at your schema. It writes the generated tree to your chosen output directory.
npx @metaengine/graphql-react <input> <output> [options]Generates React hooks and models from GraphQL schemas — typed queries, mutations & subscriptions, with optional TanStack Query over native Fetch.
npx @metaengine/graphql-react schema.graphql ./src/apinpx @metaengine/graphql-react schema.graphql ./src/api \
--tanstack-query \
--documentationnpx @metaengine/graphql-react schema.graphql ./src/api \
--error-handling \
--retries 3 \
--custom-scalar DateTime=stringEvery knob, documented
Every option is available on the C# fluent API as a method, and most are also exposed as CLI flags. Cross-cutting auth, headers, retries and timeouts apply across frameworks.
React Options
4WithBaseUrlEnvVar(string)Environment variable name for base URL (default: "REACT_APP_API_BASE_URL"). Use VITE_ prefix for Vite, NEXT_PUBLIC_ for Next.js.WithTanStackQuery()Generate TanStack Query hooks (useQuery / useMutation). Requires @tanstack/react-query.WithMiddleware()Emit fetch middleware infrastructure (Middleware type + chainMiddleware + createFetchWithMiddleware)WithResponseDateTransformation()Convert Date-typed scalar fields (e.g. DateTime) in responses to Date objects
Auth · Headers · Resilience
12WithErrorHandling()Smart error handling based on HTTP status semantics (404 / 403 → null · 400 / 422 / 409 → error body · 401 / 5xx → throw). GraphQL operations travel over HTTP POST.WithErrorHandling(errors => errors...)Per-status routing: ReturnNullFor(404, 403) · ReturnErrorFor(400, 422) · ThrowFor(401, 500)WithBearerAuth()Bearer token from env var (default API_TOKEN) — adds Authorization headerWithBearerAuth(string)Bearer token from a specific env var nameWithBearerAuth(string, string)Bearer token with custom header nameWithBasicAuth(string, string)HTTP Basic auth from username + password env varsWithCustomHeader(string, string)Static header from env var. Repeatable (e.g. X-Tenant-ID ← TENANT_ID)WithTimeout(double)Request timeout in seconds for all operationsWithTimeout(double?, double?, double?, double?)Granular timeout: connect · read · write · poolWithRetries()Retries with exponential backoff (default status 429, 503)WithRetries(int)Retries with custom max attemptsWithRetries(int, double, double, int[])Retries with full custom settings including status codes
GraphQL Options
7WithDocumentation()Generate JSDoc comments from SDL type & field descriptionsWithFragments()Emit reusable named fragments for object-type selections (...TypeFields spreads)WithOneOfInputs()Generate idiomatic @oneOf input types (tagged-union inputs where exactly one field is set)WithCustomScalar(string, Type)Map a GraphQL custom scalar to a TS type (e.g. DateTime → Date). Unmapped scalars default to stringWithTypeFilter(Func)Filter extracted GraphQL types before registration — only types returning true are generatedWithMethodNames(Func)Custom method naming ruleWithOptionsObjectThreshold(int)Parameter count for options object (default: 4)
TypeScript Output
1WithTypesBarrel()Emit an index.ts barrel per folder plus a root index.ts re-exporting everything
Naming Transformations
3Types(Func)Transform type namesPaths(Func)Transform output pathsFileNames(Func)Transform file names
File Management
5CleanDestination()Clean output directory before generationAlwaysOverwrite()Always overwrite existing filesOnlyWhenModelChanged()Update only when model changesOnlyWhenNew()Write only new files, preserve existingCleanDirectories(...)Clean specific subdirectories
Diagnostics
2Verbose()Enable verbose loggingWithLogger(Action<string>)Route generation log output to a custom sink