atl-relay-compiler v0.0.0-main-31f24c70
Relay Compiler
Relay-Compiler is a code-generation toolkit for GraphQL. It contains the core functionalities of GraphQL code-gen, including file parsing, validation, syntax tree parsing and transformation.
Configuration in package.json
The simplest way to configure relay is to add a new relay section to your
package.json that contains the relay config.
At minimum, the relay config must specify where to find source files (i.e. files
containing graphql literals) and the GraphQL schema for the project.
// adding new section to package json
{
...
"scripts": {
"relay": "relay-compiler"
},
...
// relay configuration
"relay": {
"src": "./src",
"schema": "./src/schema/app_schema.graphql"
}
}Relay Compiler will automatically discover the config if:
- There is a
relay.config.json,relay.config.jsfile at the root of the project (i.e. in the same folder as thepackage.jsonfile). - The
package.jsonfile contains a"relay"key.
Alternatively, the path to a configuration file can be specified as an argument:
npm run relay ./relay.jsonor with yarn
yarn relay ./relay.jsonPlease note, in this case you'll need to provide a separate configuration for the babel plugin.
File Finder
Relay compiler uses watchman to find
file sources, and "listen" to the file changes in the "watch" mode. If
watchman is not available, the compiler will use
glob to query the filesystem for files.
Configuration
Supported compiler configuration options
srcRoot directory of application code. stringschemaRelative path to the file with GraphQL SDL file. stringlanguageThe name of the language used for input files and generated artifacts. "javascript" | "typescript" | "flow".artifactDirectoryA specific directory to output all artifacts to. When enabling this the babel plugin needsartifactDirectoryto be set as well. stringexcludesDirectories to ignore undersrc. arraydefault: "/node_modules/", "/mocks/", "/generated/"]schemaExtensionsList of directories with schema extensions. arrayschemaConfignodeInterfaceIdFieldConfigure the name of the globally unique ID field on the Node interface. Useful if you can't use the defaultidfield name. stringnonNodeIdFieldsRestricts the type of all fields namedidtoID.allowedIdTypesMappings from types in your schema to allowed types for their fields namedid(e.g. "ObjectType": "CustomIdType"). object
noFutureProofEnumsForflowonly. This option controls whether or not a catch-all entry is added to enum type definitions values that may be added in the future. Enabling this means you will have to update your application whenever the GraphQL server schema adds new enum values to prevent it from breaking. booleancustomScalarsMappings from custom scalars in your schema to built-in GraphQL types, for type emission purposes. objecteagerEsModulesThis option enables emitting ES modules artifacts. booleanpersistConfigRelay supports two versions of the config:Remote Persisting:
urlString, URL to send a POST request to to persist. This field is required inpersistConfigstringparamsThe document will be in aPOSTparametertext. This map can contain additional parameters to send. objectconcurrencyThe maximum number concurrent requests that will be made tourl. Use a value greater than 0. number
- Local Persisting:
filePath for the JSON file that will contain operations map. Compiler will write queries in the format: { "md5(queryText) => "queryText", ...}. string
codegenCommandCommand name that for relay compiler. stringisDevVariableNameName of the global variable for dev mode (__DEV__). stringjsModuleFormatFormatting style for generated files.commonjsorhaste. Default iscommonjs. string
CLI Arguments
--repersistRun the persister even if the query has not changed.--watchRun compiler inwatchmode. Requireswatchmanto be installed.--outputOutput format of the compiler. Supported options:debug|verbose|quiet|quietWithErrors. The default value isverbose.--validateLooks for pending changes and exits with non-zero code instead of writing to disk.
1 year ago
2 years ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago