feat: introduce dynamic flow data

This commit is contained in:
Ali BARIN
2021-12-09 23:47:13 +01:00
parent 2e1523b40f
commit ec53d0ae66
5 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
import { gql } from '@apollo/client';
export const GET_FLOWS = gql`
query GetFlows {
getFlows {
id
name
}
}
`;