Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. async insertRecipeIngredient({ dispatch, commit }, recipeIngredient) {
  2. const response = await gqlClient.mutate({
  3. mutation: RECIPE_INGREDIENT_MUTATION,
  4. variables: {
  5. ...recipeIngredient
  6. }
  7. });
  8.  
  9. dispatch('findAll');
  10. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement