nestrs-prisma 0.3.0

Prisma integration helpers and providers for nestrs.
Documentation
1
2
3
4
5
6
7
8
9
//! Macros for [`crate::index_ddl::WherePredicate`].

/// Builds [`crate::index_ddl::WherePredicate::Raw`] (Prisma `where: raw("…")` for partial indexes).
#[macro_export]
macro_rules! prisma_where_raw {
    ($sql:expr) => {
        $crate::index_ddl::WherePredicate::raw($sql)
    };
}