Alex

Results 14 comments of Alex

Related issue on the AppSync Github - https://github.com/aws/aws-appsync-community/issues/146

Would be super convenient to have subscriptions allow union and interface types as return values. This would make merging multiple events into one really elegant. This efficiency also trickles down...

Great answer thanks @YukSeungChan. Saved me hours of dev time with this handy snippet. Works like a dream.

Updated deserialize method for pynamo ^5 (https://github.com/pynamodb/PynamoDB/blob/master/pynamodb/attributes.py#L968): ```python def deserialize(self, values): """ Decode from map of AttributeValue types. """ if not self.element_type: return super(DynamicMapAttribute, self).deserialize(values) class_for_deserialize = self.element_type() return {...

Thanks @tyroneerasmus for raising this issue. We've had this issue floating around for a while too. We couldn't get to the bottom of this either. This has meant that we...

+1 on this issue. We've worked around it thus far with hash based comments. However we've hit a case now where that doesn't work and there doesn't appear to be...

I'm not sure I follow how this can be expected behaviour. There are two issues I see here: 1) You cannot deploy a resolver for a non existent field, you...

I've found a better example of how there is some subtle bug here rather than this being intended functionality. The resolvers below each have the timestamp embedded in their ID....

I can also confirm I've seen the same behaviour as @ansman. The issue I had with reporting it was that I couldn't reliably reproduce it. Its exactly as @ansman says,...

@shaneyuan18 sounds like a plan. There is definitely something more subtle here on issue 2 and a separate ticket to discuss it makes sense 👍