implement login

Signed-off-by: Loan Laux <loan@outgrow.io>
This commit is contained in:
Loan Laux
2021-04-23 20:35:14 +04:00
parent 49bd38fd82
commit 8f260d66e7
18 changed files with 18596 additions and 18242 deletions

View File

@@ -0,0 +1,15 @@
const authenticateMutation = /* GraphQL */ `
mutation authenticate(
$serviceName: String!
$params: AuthenticateParamsInput!
) {
authenticate(serviceName: $serviceName, params: $params) {
sessionId
tokens {
refreshToken
accessToken
}
}
}
`
export default authenticateMutation