Results 36 comments of Theo

I'd also be interested to know if Ian got two emails.

I think a selection mode might be the cleanest way to solve this problem. It would let the user perform actions on multiple jobs and also lets them see exactly...

Nice, thanks. I think the best way to start would be to allow admins to "disable" a user, vehicle or location. This would require adding that flag to the schema...

I think `disabled: Int!` would be best. Set to 1 if disabled or 0 if enabled. Only admins can make changes to those models so there is no need to...

Thanks @ncarvajalc for looking into it. @chrisbonifacio sorry for the delay. Maybe not needed now but I generated a report for the reproduction: d6e5f7b6ca9c454ae146353bd5eba025 This is a report for my...

Hi @svidgen here is the code that I use to create and delete records: ```js async function addAssignee(user, role) { setIsPosting(true); try { const assignee = await DataStore.query(models.User, user.id); const...