Files
automatisch/packages/web/src/graphql/mutations/update-flow.ts
2022-02-01 10:08:58 +03:00

11 lines
197 B
TypeScript

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