AppSync: Resolve multiple GraphQL fields with one resolver – Amazon Web Sevices
I am creating an AppSync api with the following schema: schema { query: Query } type Query { getUser(id: String): User! } type User { DDBpk: String! DDBsk: String! DDBproperty1: String! DDBproperty2: String! emailAddress: String! emailAddressVerified: Boolean! CreateDate: String }…