UNPKG

@nestjs/graphql

Version:

Nest - modern, fast, powerful node.js web framework (@graphql)

12 lines 329 B
export type NullableList = 'items' | 'itemsAndList'; export interface BaseTypeOptions<T = any> { /** * Determines whether field/argument/etc is nullable. */ nullable?: boolean | NullableList; /** * Default value. */ defaultValue?: T; } //# sourceMappingURL=base-type-options.interface.d.ts.map