File size: 189 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 |
import gql from 'graphql-tag';
export default gql`
mutation signIn($username: String!, $password: String!) {
signIn(username: $username, password: $password) {
id
}
}
`;
|