The goal is to create a repository layer that:
New team members can clone one repo, run npm install (or equivalent), and see: appsync unified repo
appsync-stack.ts).schema.graphql).resolvers/getUser.js).There is no "repository archaeology" required to understand the system. Concept: Unified Repository for AWS AppSync The goal
private async safeExecute<T>(operation: () => Promise<T>, operationName: string): Promise<T>
try
return await operation();
catch (error)
console.error(`[AppSync] $operationName failed:`, error);
if (error.networkError)
throw new Error(`Network error - please check your connection`);
throw error;