hasNode method

bool hasNode(
  1. String key
)

Returns whether key is present in this graph.

key MUST be namespaced (e.g. manager:key)

Implementation

bool hasNode(String key) {
  _assertKey(key);
  return _hasNode(key);
}