src/Types/Node.php
<?php
declare(strict_types=1);
/*
* This file is part of the Neo4j PHP Client and Driver package.
*
* (c) Nagels <https://nagels.tech>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Laudis\Neo4j\Types;
use Laudis\Neo4j\Exception\PropertyDoesNotExistException;
use function sprintf;
/**
* A Node class representing a Node in cypher.
*
* @psalm-import-type OGMTypes from \Laudis\Neo4j\Formatter\OGMFormatter
*
* @psalm-immutable
* @psalm-immutable
*
* @extends AbstractPropertyObject<OGMTypes, int|string|CypherMap<OGMTypes>>
* @extends AbstractPropertyObject<OGMTypes, int|CypherList<string>|CypherMap<OGMTypes>>
*/
final class Node extends AbstractPropertyObject
{
/**
* @param CypherList<string> $labels
* @param CypherMap<OGMTypes> $properties
*/
public function __construct(
private readonly int $id,
private readonly CypherList $labels,
private readonly CypherMap $properties,
private readonly ?string $elementId
) {}
/**
* The labels on the node.
*
* @return CypherList<string>
*/
public function getLabels(): CypherList
{
return $this->labels;
}
/**
* The id of the node.
*/
public function getId(): int
{
return $this->id;
}
/**
* Gets the property of the node by key.
*
* @return OGMTypes
*/
public function getProperty(string $key)
{
/** @psalm-suppress ImpureMethodCall */
if (!$this->properties->hasKey($key)) {
throw new PropertyDoesNotExistException(sprintf('Property "%s" does not exist on node', $key));
}
/** @psalm-suppress ImpureMethodCall */
return $this->properties->get($key);
}
/**
* @psalm-suppress ImplementedReturnTypeMismatch False positive.
*
* @return array{id: int, labels: CypherList<string>, properties: CypherMap<OGMTypes>}
*/
public function toArray(): array
{
return [
'id' => $this->id,
'labels' => $this->labels,
'properties' => $this->properties,
];
}
public function getProperties(): CypherMap
{
/** @psalm-suppress InvalidReturnStatement false positive with type alias. */
return $this->properties;
}
public function getElementId(): ?string
{
return $this->elementId;
}
}