feat: make flow name updatable
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
91a1c8b793
commit
89fbfd9dfc
10
packages/web/src/graphql/mutations/update-flow.ts
Normal file
10
packages/web/src/graphql/mutations/update-flow.ts
Normal 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
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user