refactor: Update credential wording with connection

This commit is contained in:
Ali BARIN
2021-10-17 16:08:05 +02:00
parent a1363f7fdd
commit 48ba4565e4
4 changed files with 21 additions and 21 deletions

View File

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