/** * Make all properties in T optional */ export type QueryPartialEntity = { [P in keyof T]?: T[P]|(() => string); };