removeId method

void removeId(
  1. String type,
  2. Object id, {
  3. bool notify = true,
})

Removes type/id (and its edges) from graph

Implementation

void removeId(String type, Object id, {bool notify = true}) =>
    _removeNode(id.toString().typifyWith(type).namespaceWith('_id'),
        notify: notify);