Appsync & GraphQL: how to filter a list by nested value
问题 I have an Appsync API generated by Amplify from a basic schema. On the Article model, a category field is nested within a metadata field. I want to build a Query that provides a list of Articles filtered by category. It is not clear to me how to filter on a nested value... I have seen similar questions but the analogous answer has not worked. AWS GraphQL Transform Schema type Article @model { id: ID! title: String! description: String! text: String! metadata: ArticleMetadata! } type