import { MakeOptional } from '@daffodil/driver/shopify'
type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]>; }