refactor: start using AvailableAppsEnumType

This commit is contained in:
Ali BARIN
2021-11-28 20:56:42 +01:00
committed by Ömer Faruk Aydın
parent 9ea5242d94
commit 69bea588e4
2 changed files with 2 additions and 2 deletions
@@ -1,7 +1,7 @@
import { gql } from '@apollo/client';
export const GET_APP_CONNECTIONS = gql`
query GetAppConnections($key: String!) {
query GetAppConnections($key: AvailableAppsEnumType!) {
getApp(key: $key) {
key
connections {
+1 -1
View File
@@ -1,7 +1,7 @@
import { gql } from '@apollo/client';
export const GET_APP = gql`
query GetApp($key: String!) {
query GetApp($key: AvailableAppsEnumType!) {
getApp (key: $key) {
name
key