feat: make flow name updatable

This commit is contained in:
Ali BARIN
2022-02-01 00:16:40 +01:00
committed by Ömer Faruk Aydın
parent 91a1c8b793
commit 89fbfd9dfc
5 changed files with 145 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
import { gql } from '@apollo/client';
export const UPDATE_FLOW = gql`
mutation UpdateFlow($id: String!, $name: String!) {
updateFlow(id: $id, name: $name) {
id
name
}
}
`;