Interface InsertOneResult<Schema>

Represents the result of an insertOne command.

Field

insertedId - The ID of the inserted document.

See

Collection.insertOne

interface InsertOneResult<Schema> {
    insertedId: IdOf<Schema>;
}

Type Parameters

  • Schema

Properties

Properties

insertedId: IdOf<Schema>

The ID of the inserted document (this will be an autogenerated ID if one was not provided).

Note that it is up to the user that the ID covers all possible types of IDs that the collection may have, keeping in mind the type of the auto-generated IDs, as well as any the user may provide.