UNPKG
@hymns/mongo-nestjs-utils
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
Mongodb NestJS database utilities
github.com/hymns/mongo-nestjs-utils
hymns/mongo-nestjs-utils
@hymns/mongo-nestjs-utils
/
src
/
abstract.schema.ts
9 lines
(7 loc)
•
204 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{ Prop, Schema }
from
'@nestjs/mongoose'
;
import
{ SchemaTypes, Types }
from
'mongoose'
;
@Schema()
export
class
AbstractDocument
{
@Prop(
{
type
: SchemaTypes.ObjectId }
)
_
id
: Types.ObjectId; }