feat: Introduce reset and verify connection mutations

This commit is contained in:
Faruk AYDIN
2021-10-22 15:55:25 +02:00
committed by Ali BARIN
parent de82dbfe29
commit 44fbaeee82
9 changed files with 168 additions and 18 deletions

View 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
}
}
}
`;