LMongo\Query\Builder::exists PHP 메소드

exists() 공개 메소드

Determine if any document exist for the current query.
public exists ( ) : boolean
리턴 boolean
    public function exists()
    {
        return $this->count() > 0;
    }
Builder