Interface FindByIdOptions<T, Inc>

Options for the FindById operation.

interface FindByIdOptions<
    T extends default,
    Inc extends IncludedAssociations<T> = [],
> {
    consistentRead?: boolean;
    include?: Inc;
}

Type Parameters

Properties

consistentRead?: boolean

Whether to use consistent reads for the operation. Defaults to false.

false
include?: Inc