feat: Implement getData query and send a message action for slack

This commit is contained in:
Faruk AYDIN
2022-03-15 02:57:37 +03:00
committed by Ömer Faruk Aydın
parent f8c7b85682
commit 8512528fcf
14 changed files with 305 additions and 92 deletions

View File

@@ -2,7 +2,7 @@ import { gql } from '@apollo/client';
export const GET_APP = gql`
query GetApp($key: AvailableAppsEnumType!) {
getApp (key: $key) {
getApp(key: $key) {
name
key
iconUrl
@@ -54,7 +54,7 @@ export const GET_APP = gql`
name
key
description
subSteps {
substeps {
name
}
}
@@ -62,7 +62,7 @@ export const GET_APP = gql`
name
key
description
subSteps {
substeps {
name
}
}

View File

@@ -53,7 +53,7 @@ export const GET_APPS = gql`
name
key
description
subSteps {
substeps {
key
name
arguments {
@@ -68,7 +68,7 @@ export const GET_APPS = gql`
name
key
description
subSteps {
substeps {
key
name
arguments {
@@ -83,4 +83,4 @@ export const GET_APPS = gql`
}
}
}
`;
`;