speckworks / Savour

Mock of a popular craft beer ordering application.
1 stars 0 forks source link

Build login functionality #5

Open WSINTRA opened 4 years ago

WSINTRA commented 4 years ago

Build a login component and test it with backend db


mutation {
  signup(
    name: "Test"
    email: "test@savour.com"
    password: "test"
  ) {
    token
    user {
      id
    }
  }
}