Neos\ContentRepository\Eel\FlowQueryOperations\PropertyOperation::canEvaluate PHP Method

canEvaluate() public method

We can only handle ContentRepository Nodes.
public canEvaluate ( mixed $context ) : boolean
$context mixed
return boolean
    public function canEvaluate($context)
    {
        return isset($context[0]) && $context[0] instanceof NodeInterface;
    }
PropertyOperation