Files
automatisch/packages/web/src/graphql/queries/get-app-connections.ts

20 lines
328 B
TypeScript

import { gql } from '@apollo/client';
export const GET_APP_CONNECTIONS = gql`
query GetAppConnections($key: String!) {
getApp(key: $key) {
key
connections {
id
key
verified
flowCount
formattedData {
screenName
}
createdAt
}
}
}
`;