todosLists/components/SignUp.js

32 lines
816 B
JavaScript
Raw Normal View History

2022-02-24 12:55:27 +01:00
const API_URL = 'http://127.0.0.1:4000'
const SIGN_UP =
'mutation($username:String!, $password:String!){signUp(username:$username, password:$password)}'
export default function signUp (username, password) {
return fetch(API_URL, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
query: SIGN_UP,
variables: {
username: username,
password: password
}
})
})
.then(response => {
return response.json()
})
.then(jsonResponse => {
if (jsonResponse.errors != null){
throw(jsonResponse.errors[0].message)
}
return jsonResponse.data.signIn
})
.catch(error => {
throw error
})
}