Model.prototype.next = async function next() {
    return Model.findOne({
      where: addTreeToCondition({ lft: this.rgt + 1 }, this.tree),
    });
  };