Files
automatisch/packages/web/src/graphql/queries/get-flow.ts
2022-12-08 00:34:28 +01:00

28 lines
411 B
TypeScript

import { gql } from '@apollo/client';
export const GET_FLOW = gql`
query GetFlow($id: String!) {
getFlow(id: $id) {
id
name
active
steps {
id
type
key
appKey
iconUrl
webhookUrl
status
position
connection {
id
verified
createdAt
}
parameters
}
}
}
`;