Benoît BouréforGraphBoltblog.graphbolt.dev·Feb 29, 2024AWS AppSync Best PracticesAWS AppSync is a serverless offering from AWS that allows you to create scalable and efficient GraphQL APIs. It is fully managed, meaning that you don't need to worry about managing infrastructure or servers. Like any other service, there are some be...Discuss·1 like·1.7K readsaws appsync
Benoît BouréforGraphBoltblog.graphbolt.dev·Feb 22, 2024Building an Event-Driven Application with AWS AppSync, EventBridge, and Step FunctionsOver the past years, event-driven architecture has become more and more popular. With the arrival of services such as EventBridge and its integration with many other AWS services, building such applications has become easier than ever. Last year, AWS...Md Faizan Alam and 1 other are discussing this2 people are discussing thisDiscuss·17 likes·1.8K readsAppSync TutorialsAppSync
Benoît BouréforGraphBoltblog.graphbolt.dev·Feb 5, 2024GraphBolt v1.0.0 is Here 🚀After opening sales in December, and leaving the Beta phase in January, today, I'm proudly announcing one of the biggest releases to date. This version marks a huge milestone in the project and offers some major features I've wanted to include for a ...Discuss·10 likes·228 readsUpdatesAppSync
Rich BuggyProrichdevelops.dev·Jan 2, 2024Solve the AppSync Lambda Resolver N+1 Problem with BatchInvokeIf you're not familiar with the GraphQL N+1 problem then consider the following query. query { authors { id name books { id name } } } The "authors" resolver is executed once and returns a list of N authors. The "book...Discuss·3 likes·359 readsAWS
Rich BuggyProrichdevelops.dev·Dec 21, 2023AppSync Security ImprovementsAWS recently announcement some additional configuration settings for AppSync. These new settings allow you to control the query complexity and restrict schema introspection. Using these settings will help you stop people from abusing your GraphQL API...DiscussAppSync
Benoît BouréforGraphBoltblog.graphbolt.dev·Dec 16, 2023What's new in GraphBolt v0.7.0?At GraphBolt, we are on a mission: Pack everything you need to build, test, manage, and observe your AWS AppSync APIs in one single desktop application. Today, we are one step closer to that. We just released a new version of GraphBolt with three ne...Discuss·10 likes·45 readsGraphBolt releasesAppSync
Benoît BouréforGraphBoltblog.graphbolt.dev·Oct 30, 2023Debugging AWS AppSync APIs With CloudWatchAWS AppSync is a fully managed service by Amazon Web Services that allows developers to create secure and scalable GraphQL APIs easily. One of the great benefits of AppSync is the ability to connect GraphQL schemas to data sources like DynamoDB by wr...Discuss·2 likes·1.4K readsAppSync
Amrutha Damruthadronamraju.hashnode.dev·Oct 14, 2023AWS AppSync Interview Q/AWhat is AWS AppSync and what is it used for? AWS AppSync is a managed serverless GraphQL service that simplifies the development and deployment of GraphQL applications. It allows you to create GraphQL APIs accessible from various client or server ap...DiscussAWS Services Interview Q/Aaws appsync
Chigo Echigo.hashnode.dev·Aug 1, 2023MediFind with Amplify Studio, React & Amazon S3#AWSAmplifyHackathon #AWSAmplify Introduction Welcome to my blog where I'll take you on an exciting journey through the creation of my AWS Amplify Hackathon project. In this project, I had the opportunity to explore the power of AWS Amplify Studio, a...Discuss·21 likes·392 readsAWS Amplify
Chidimma Gabriel Dominic Nwekengabriel.hashnode.dev·Jul 7, 2023Implementing Cursor-Based Pagination with APPSYNC_JS and DynamoDBTL;DR This article offers insights on implementing cursor-based pagination with DynamoDB and APPSYNC_JS by setting up a serverless application, creating a basic schema, building resolvers, and deploying the service using Serverless Framework and App...Discuss·185 readsAWS