(uuid: string)
| 75 | }; |
| 76 | |
| 77 | const deleteNode = async (uuid: string) => { |
| 78 | await deleteNodeApi().execute({ |
| 79 | params: { |
| 80 | uuid |
| 81 | } |
| 82 | }); |
| 83 | await refresh(true); |
| 84 | }; |
| 85 | |
| 86 | const updateNode = async (uuid: string, data: any) => { |
| 87 | const { execute } = editNodeApi(); |