I have an Appsync Schema which defines a User type which itself contains a List of Notes:
type User { id: ID! name: String! notes: [Note] } type Note {