Reference
API

Model.create()

create(docs: Array<ModelProps<T> | T>): Promise<T[]>;
create(doc: ModelProps<T> | T): Promise<T>;

Model.find()

find(filter: Filter<T> = {}, options?: FindOptions): FindQuery<T>
ParameterTypeDescription
filterFilter<T>Filter the mongodb query. See more here
optionsFindOptionsFilter the mongodb query. See more here

[WIP]