feat: introduce dummy flow editor
This commit is contained in:
17
packages/web/src/graphql/queries/get-flow.ts
Normal file
17
packages/web/src/graphql/queries/get-flow.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const GET_FLOW = gql`
|
||||
query GetFlow($id: String!) {
|
||||
getFlow(id: $id) {
|
||||
id
|
||||
name
|
||||
steps {
|
||||
id
|
||||
type
|
||||
key
|
||||
appKey
|
||||
connectionId
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user