import { gql } from '@apollo/client'; export const CREATE_CONNECTION = gql` mutation CreateConnection($key: String!, $data: twitterCredentialInput!) { createConnection(key: $key, data: $data) { key id } } `;