diff --git a/graph/iterator/all_iterator.go b/graph/iterator/all_iterator.go index 31d4b8e..0fc2694 100644 --- a/graph/iterator/all_iterator.go +++ b/graph/iterator/all_iterator.go @@ -103,6 +103,11 @@ func (it *Int64) Next() bool { return graph.NextLogOut(it, val, true) } +func (it *Int64) Err() error { + // This iterator should never error. + return nil +} + // DEPRECATED func (it *Int64) ResultTree() *graph.ResultTree { return graph.NewResultTree(it.Result())