You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app.service('/todos').create({text: "Test todo",complete: false}).then(()=>{// Mark all incomplete todo's as donereturnapp.service('/todos').patch(null,{complete: true},{query: {complete: false}})}).then(updated=>{console.log(updated)// returns []})
The text was updated successfully, but these errors were encountered:
Example:
The text was updated successfully, but these errors were encountered: