mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
// ------ mutations
|
|
|
|
export const loginMutation = gql`
|
|
mutation ($email: String!, $password: String!) {
|
|
login(email: $email, password: $password)
|
|
}
|
|
`
|
|
|
|
// ------ queries
|
|
|
|
// fill queries in here
|