32 lines
816 B
JavaScript
32 lines
816 B
JavaScript
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
|
|
})
|
|
} |