refactor: rewrite get app connections with RQ

This commit is contained in:
Rıdvan Akca
2024-04-05 15:44:23 +02:00
parent d74af4931e
commit d4e4d95b6d
8 changed files with 37 additions and 81 deletions

View File

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