Skip to main content

Programmatic usage of CLI

@gqless/cli has also a complete programmatic API, which allows you to generate the client with custom scripts.

inspectWriteGenerate#

Basically calling CLI functionality programmatically.

All the fields are optional, and it will always read from the Configuration if any field is not specified.

import { inspectWriteGenerate } from '@gqless/cli';
await inspectWriteGenerate({
destination: './src/gqless/index.ts',
generateOptions: {
preImport: '',
scalarTypes: {
DateTime: 'string',
},
react: true,
enumsAsStrings: false,
subscriptions: false,
},
headers: {
authorization: process.env.TOKEN,
},
});

writeGenerate#

If you have direct access to the GraphQLSchema from graphql-js, you can give it to this function and it will do the rest.

All the GenerateOptions are optional, and it will always read from the Configuration if any field is not specified.

import { writeGenerate } from '@gqless/cli';
// You get the `schema` from somewhere...
await writeGenerate(
// Required
schema,
// Destination, Required
'./src/gqless/index.ts',
// GenerateOptions, optional
{
preImport: '',
scalarTypes: {
DateTime: 'string',
},
react: true,
enumsAsStrings: false,
subscriptions: false,
},
// What to do if a gqless client file already exists, Optional
(existingFile) => {
// existingFile == string
}
);

generate#

If you have direct access to the GraphQLSchema from graphql-js, you can give it to this function and it generates the code and simply return it.

All the GenerateOptions are optional, and it will always read from the Configuration if any field is not specified.

import { generate } from '@gqless/cli';
// You get the `schema` from somewhere...
const {
clientCode,
schemaCode,
generatedSchema,
scalarsEnumsHash,
} = await generate(
// Required
schema,
// GenerateOptions, optional
{
preImport: '',
scalarTypes: {
DateTime: 'string',
},
react: true,
enumsAsStrings: false,
subscriptions: false,
}
);

getRemoteSchema#

Inspect a remote GraphQL API

If the headers are not specified, it will look for Configuration.

import { getRemoteSchema } from '@gqless/cli';
const schema = await getRemoteSchema(
// Endpoint, required
'http://localhost:3000/api/graphql',
// Optional
{
headers: {
authorization: process.env.TOKEN,
},
}
);
// schema == import("graphql").GraphQLSchema
Last updated on by Pablo Sáez