Creates a new document or documents
()
| 314 | |
| 315 | /** Creates a new document or documents */ |
| 316 | create(): Promise<null>; |
| 317 | create(doc: Partial<TRawDocType>): Promise<THydratedDocumentType>; |
| 318 | create(docs: Array<Partial<TRawDocType>>): Promise<THydratedDocumentType[]>; |
| 319 | create(docs: Array<DeepPartial<ApplyBasicCreateCasting<Require_id<TRawDocType>>>>, options: CreateOptions & { aggregateErrors: true }): Promise<(THydratedDocumentType | Error)[]>; |
no outgoing calls