# UndoEndRecordGraph()

> Signals the end of an undoable operation. Sends the undo data to the editor undo system and refreshes the graph view with the changes made.

## Definition

* **Type:** Method
* **Namespace:** [Unity.GraphToolkit.Editor](/engine/6000.7/script-reference/unity/graphtoolkit/editor.md)
* **Assembly:** UnityEditor

```csharp
public void UndoEndRecordGraph()
```

### Remarks

Call this after you trigger a sequence of graph modification methods to finalize recording the operations to the undo stack. Call [Graph.UndoBeginRecordGraph](/engine/6000.7/script-reference/unity/graphtoolkit/editor/graph/undobeginrecordgraph.md) before the sequence to signal the operations to be recorded.

Throws `InvalidOperationException` if there is no undo operation currently registered to the Graph.
