feat: Introduce reset and verify connection mutations
This commit is contained in:
13
packages/web/src/graphql/mutations/verify-connection.ts
Normal file
13
packages/web/src/graphql/mutations/verify-connection.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const VERIFY_CONNECTION = gql`
|
||||
mutation VerifyConnection($id: String!) {
|
||||
verifyConnection(id: $id) {
|
||||
id
|
||||
verified
|
||||
data {
|
||||
screenName
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user