Dane Pilcher

Results 72 comments of Dane Pilcher

We have discussed this issue some and the solution will likely be to update the VTL in AppSync. AppSync API VTL will modify `{ eq: null }` filters to use...

Possibly related to #6534. Could further explain your use case for creating models when no user is signed in? Or is it more the following case? 1. Sign in user...

Ok, I understand now. I agree it is strange behavior that the mutations are deleted. I'll look into some solutions for this.

There isn't an easy way to deduplicate identical records with different IDs at this time. The upcoming custom primary key feature will allow users to specify their own primary key...

Interesting find! Thank you for pointing this out. I think the true problem here is that `expect.rejects` does not have `await`. Starting with node 15 unhandled promise rejections throw an...

This seems abandoned so I am moving the changes over to another PR.

Please see [my previous comment](https://github.com/aws-amplify/amplify-js/pull/8927#issuecomment-1231988557). If you are willing to make these changes I can close my PR (https://github.com/aws-amplify/amplify-js/pull/10470) and approve this one.

From https://github.com/aws-amplify/amplify-ios/pull/1901 > The fix here is for DataStorePlugin to stop the storage engine (in turn stops the sync engine and dereferences storage engine) when it receives a terminating event...

Unfortunately there is not a good event to know that DataStore has stopped in this case. However, calling DataStore stop before start here is unnecessary. Calling start alone should recover...

Ah, I understand. I would say for the time being the solution would be to wrap the stop with another start. This isn't the prettiest solution, but will be fine...