diff --git a/packages/web/src/graphql/queries/get-app.js b/packages/web/src/graphql/queries/get-app.js deleted file mode 100644 index edfd362d..00000000 --- a/packages/web/src/graphql/queries/get-app.js +++ /dev/null @@ -1,105 +0,0 @@ -import { gql } from '@apollo/client'; -export const GET_APP = gql` - query GetApp($key: String!) { - getApp(key: $key) { - name - key - iconUrl - docUrl - authDocUrl - primaryColor - supportsConnections - auth { - fields { - key - label - type - required - readOnly - value - description - docUrl - clickToCopy - options { - label - value - } - } - authenticationSteps { - type - name - arguments { - name - value - type - properties { - name - value - } - } - } - sharedAuthenticationSteps { - type - name - arguments { - name - value - type - properties { - name - value - } - } - } - reconnectionSteps { - type - name - arguments { - name - value - type - properties { - name - value - } - } - } - sharedReconnectionSteps { - type - name - arguments { - name - value - type - properties { - name - value - } - } - } - } - connections { - id - } - triggers { - name - key - type - showWebhookUrl - pollInterval - description - substeps { - name - } - } - actions { - name - key - description - substeps { - name - } - } - } - } -`;