mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const AddEmailAddressMutation = gql`
|
|
mutation($email: String!) {
|
|
AddEmailAddress(email: $email) {
|
|
email
|
|
createdAt
|
|
}
|
|
}
|
|
`
|