Type alias PullOperator<TSchema>

PullOperator<TSchema>: {
    readonly [key in KeysOfAType<TSchema, ReadonlyArray<any>>]?: Partial<Flatten<TSchema[key]>> | FilterOperations<Flatten<TSchema[key]>>
} & NotAcceptedFields<TSchema, ReadonlyArray<any>> & {
    [key: string]: FilterOperators<any> | any;
}

Type Parameters

  • TSchema

Type declaration

Generated using TypeDoc