feat: show connection upon verification

This commit is contained in:
Ali BARIN
2022-07-27 16:02:26 +02:00
parent a5367c3770
commit d513e03138
3 changed files with 24 additions and 8 deletions

View File

@@ -11,9 +11,6 @@ export const CREATE_CONNECTION = gql`
formattedData {
screenName
}
app {
key
}
}
}
`;

View File

@@ -4,10 +4,15 @@ export const VERIFY_CONNECTION = gql`
mutation VerifyConnection($input: VerifyConnectionInput) {
verifyConnection(input: $input) {
id
key
verified
formattedData {
screenName
}
createdAt
app {
key
}
}
}
`;