Phalcon\Db\Adapter\MongoDB\InsertManyResult::getInsertedIds PHP Method

getInsertedIds() public method

The index of each ID in the map corresponds to the document's position in the bulk operation. If the document had an ID prior to insertion (i.e. the driver did not generate an ID), this will contain its "_id" field value. Any driver-generated ID will be an MongoDB\BSON\ObjectID instance.
public getInsertedIds ( ) : mixed[]
return mixed[]
    public function getInsertedIds()
    {
        return $this->insertedIds;
    }