tectonic
tectonic copied to clipboard
How do we know when to re-call failed queries?
We have a component requests data. The request fails. We make sure we don't re-request this data in an infinite loop when the status is updated by not rerequesting failed GET queries.
How do we know when to retry failed GET queries?
@load({
user: User.getItem({ id: 3 })
})
...