Doctrine\OrientDB\Query\QueryInterface::in PHP Method

in() public method

For example a FIND REFERENCES uses the IN in order to find documents referencing to a given document in N classes.
public in ( array $in, boolean $append ) : mixed
$in array
$append boolean
return mixed
    public function in(array $in, $append);

Usage Example

Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function in(array $in, $append = true)
 {
     return $this->command->in($in, $append);
 }