Home > @vsf-enterprise/bigcommerce-api > GraphQL > MakeOptional
# GraphQL.MakeOptional type
Signature:
export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
[SubKey in K]?: Maybe<T[SubKey]>;
};
Home > @vsf-enterprise/bigcommerce-api > GraphQL > MakeOptional
Signature:
export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
[SubKey in K]?: Maybe<T[SubKey]>;
};
On this page