10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const GET_FLOWS = gql`
|
|
query GetFlows {
|
|
getFlows {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
`; |