ApiOptions
ApiOptions
The ApiOptions define how the Vendure GraphQL APIs are exposed, as well as allowing the API layer to be extended with middleware.
interface ApiOptions {
hostname?: string;
port: number;
adminApiPath?: string;
shopApiPath?: string;
adminApiPlayground?: boolean | RenderPageOptions;
shopApiPlayground?: boolean | RenderPageOptions;
adminApiDebug?: boolean;
shopApiDebug?: boolean;
shopListQueryLimit?: number;
adminListQueryLimit?: number;
adminApiValidationRules?: Array<(context: ValidationContext) => any>;
shopApiValidationRules?: Array<(context: ValidationContext) => any>;
channelTokenKey?: string;
cors?: boolean | CorsOptions;
middleware?: Middleware[];
apolloServerPlugins?: ApolloServerPlugin[];
introspection?: boolean;
}
hostname
string
''
Set the hostname of the server. If not set, the server will be available on localhost.
port
number
3000
Which port the Vendure server should listen on.
adminApiPath
string
'admin-api'
The path to the admin GraphQL API.
shopApiPath
string
'shop-api'
The path to the shop GraphQL API.
adminApiPlayground
boolean | RenderPageOptions
false
The playground config to the admin GraphQL API ApolloServer playground.
shopApiPlayground
boolean | RenderPageOptions
false
The playground config to the shop GraphQL API ApolloServer playground.
adminApiDebug
boolean
false
The debug config to the admin GraphQL API ApolloServer playground.
shopApiDebug
boolean
false
The debug config to the shop GraphQL API ApolloServer playground.
shopListQueryLimit
number
100
The maximum number of items that may be returned by a query which returns a PaginatedList
response. In other words,
this is the upper limit of the take
input option.
adminListQueryLimit
number
1000
The maximum number of items that may be returned by a query which returns a PaginatedList
response. In other words,
this is the upper limit of the take
input option.
adminApiValidationRules
Array<(context: ValidationContext) => any>
[]
Custom functions to use as additional validation rules when validating the schema for the admin GraphQL API ApolloServer validation rules.
shopApiValidationRules
Array<(context: ValidationContext) => any>
[]
Custom functions to use as additional validation rules when validating the schema for the shop GraphQL API ApolloServer validation rules.
channelTokenKey
string
'vendure-token'
The name of the property which contains the token of the active channel. This property can be included either in the request header or as a query string.
cors
boolean | CorsOptions
{ origin: true, credentials: true }
Set the CORS handling for the server. See the express CORS docs.
middleware
Custom Express or NestJS middleware for the server. More information can be found in the Middleware docs.
apolloServerPlugins
ApolloServerPlugin[]
[]
Custom ApolloServerPlugins which allow the extension of the Apollo Server, which is the underlying GraphQL server used by Vendure.
Apollo plugins can be used e.g. to perform custom data transformations on incoming operations or outgoing data.
introspection
boolean
true
Controls whether introspection of the GraphQL APIs is enabled. For production, it is recommended to disable introspection, since exposing your entire schema can allow an attacker to trivially learn all operations and much more easily find any potentially exploitable queries.
Note: when introspection is disabled, tooling which relies on it for things like autocompletion will not work.
Example
{
introspection: process.env.NODE_ENV !== 'production'
}