Doctrine\OrientDB\Query\Command\Insert::fields PHP Метод

fields() публичный Метод

Sets the fields to insert within the query.
public fields ( array $fields, boolean $append = true ) : Insert
$fields array
$append boolean
Результат Insert
    public function fields(array $fields, $append = true)
    {
        $this->setTokenValues('Fields', $fields, $append);
        return $this;
    }