webapp/src/graphql/mutation/auth-send-link.ts

10 lines
180 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2022-11-01 22:25:18 +00:00
mutation SendLinkQuery($email: String!, $lang: String) {
sendLink(email: $email, lang: $lang) {
2022-09-09 11:53:35 +00:00
error
}
}
`