refactor(web): remove typescript
This commit is contained in:
27
packages/web/src/graphql/queries/get-flow.js
Normal file
27
packages/web/src/graphql/queries/get-flow.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import { gql } from '@apollo/client';
|
||||
export const GET_FLOW = gql`
|
||||
query GetFlow($id: String!) {
|
||||
getFlow(id: $id) {
|
||||
id
|
||||
name
|
||||
active
|
||||
status
|
||||
steps {
|
||||
id
|
||||
type
|
||||
key
|
||||
appKey
|
||||
iconUrl
|
||||
webhookUrl
|
||||
status
|
||||
position
|
||||
connection {
|
||||
id
|
||||
verified
|
||||
createdAt
|
||||
}
|
||||
parameters
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user