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

10 lines
149 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import { gql } from '@urql/core'
export default gql`
2022-09-17 18:23:30 +00:00
query SendLinkQuery($email: String!) {
sendLink(email: $email) {
2022-09-09 11:53:35 +00:00
error
}
}
`