Front-End Web & Mobile
Category: AWS AppSync
Creating serverless GraphQL APIs from RDS databases with AWS AppSync and PostGraphile
August 21, 2024: We recommend using Amplify Gen 2 to connect your app to existing MySQL and PostgreSQL database. GraphQL is a query language for APIs that provides an understandable description of the data in your API, and that allows clients to ask for data in the shape that they need it. GraphQL helps developers […]
Useful AWS AppSync GraphQL Utility Helpers you might not know about
AWS AppSync is a managed serverless GraphQL service that simplifies application development by letting you create a flexible API to securely access, manipulate, and combine data from one or more data sources with a single network call. With GraphQL, special functions called Resolvers are used to implement business logic linking or “resolving” types, fields, or […]
Enhancing Live Sports with the new AWS AppSync filtering capabilities
This article was written by Stefano Sandrini, Principal Solutions Architect, AWS With AWS AppSync you can create serverless GraphQL APIs that simplify application development by providing a single endpoint to securely access data from multiple data sources, and leverage GraphQL subscriptions to implement engaging real-time application experiences by automatically publishing data updates to subscribed API […]
Implement Multi-Region Serverless (and Functionless) WebSocket Pub/Sub APIs with AWS AppSync and Amazon EventBridge
AWS AppSync allows developers to easily implement engaging real-time application experiences by automatically publishing data updates to subscribed API clients via serverless WebSockets connections. With built-in support for WebSockets, AppSync can seamlessly push data to clients that choose to listen to specific events from the backend. This means that you can easily and effortlessly make […]
Create real-time applications via serverless WebSockets with new AWS AppSync GraphQL subscriptions filtering capabilities
With AWS AppSync you can create serverless GraphQL APIs that simplify application development by providing a single endpoint to securely query or update data from multiple data sources, and leverage GraphQL subscriptions to implement engaging real-time application experiences by automatically publishing data updates to subscribed API clients via serverless WebSockets connections. Taking advantage of GraphQL subscriptions […]
How to connect your GraphQL API to AWS data sources
What’s a resolver? A GraphQL Resolver is a function or method that resolves a value for a type or field within a schema. A resolver is the key architectural component that connects GraphQL fields, graph edges, queries, mutations, and subscriptions to their respective data sources and microservices. In this post, we’ll focus on how to build […]
Multi Region Deployment of AWS AppSync with Amazon DynamoDB Global Tables
As organizations grow, they often need to serve geographically dispersed users with low latency, prompting them to have a distributed global infrastructure in the cloud. By leveraging the AWS Global Network to deploy applications into multiple AWS Regions, organizations can allow their users to connect to an API endpoint in the Region with the lowest […]
Evolving REST APIs with GraphQL using AWS AppSync Direct Lambda Resolvers
AWS AppSync is a managed GraphQL service that makes it easy to connect disparate data sources into a single cohesive API. GraphQL APIs start with the definition of a schema that defines the data types and queries for accessing them. Data Sources are the backend services that the API will use to fulfill requests. Finally, […]
Simple serverless WebSocket real-time API with AWS AppSync (little or no GraphQL experience required)
June 27, 2024: This blog post covers Amplify Gen 1. For new Amplify apps, we recommend using Amplify Gen 2. You can learn more about Gen 2 in our launch blog post. AWS AppSync simplifies application development by letting applications securely access, manipulate, and receive data as well as real-time updates from multiple data sources, […]
Introducing server-side caching item eviction for AWS AppSync
AWS AppSync is a managed serverless GraphQL service that makes it easy to securely connect to data sources such as Amazon DynamoDB tables, AWS Lambda functions, and more. AppSync offers managed server-side caching that reduces the need to fetch data from your data sources for every single request. This lets developers optimize their GraphQL APIs, and […]