GraphAware\Neo4j\Client\Formatter\RecordView::nodeValue PHP Метод

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

Returns the Node for value $key. Ease IDE integration.
public nodeValue ( string $key ) : Node
$key string
Результат GraphAware\Neo4j\Client\Formatter\Type\Node
    public function nodeValue($key)
    {
        if (!$this->hasValue($key) || !$this->value($key) instanceof Node) {
            throw new \InvalidArgumentException(sprintf('value for %s is not of type %s', $key, Node::class));
        }
        return $this->value($key);
    }