public void remove(Long... node) throws GraphException {
try {
boolean changed = RecordIteratorHelper.remove(btree, node);
if (!changed) {
throw new GraphException("Failed to remove nonexistent triple");
}
} catch (IOException e) {
throw new RuntimeException(e);
}
}