python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to return from a AWS Appsync resolver pipeline without throwing an error
I have a resolver pipeline where I check to see if an item exists. If it does not I want to start a lambda which will create the data. If the queried item exists already I want to return from the pipe...
Martin Gressler
Votes: 0
Answers: 0
Custom domain name with AWS AppSync using CDK v2
I try to add a custom domain name to my AWS AppSync API using the AWS CDK (v2).
First, I manually added a certificate for my domain. I did this in the us-east-1 region (while my API is hosted in eu-ce...
romor
Votes: 0
Answers: 2
AWS CDK Issue with Appsync
import this
from constructs import Construct
from aws_cdk import (
Duration,
Stack,
aws_iam as iam,
aws_appsync as appsync,
aws_dynamodb as dynamodb,
aws_lambda as lamb
)
class CdkStack(Stack):
...
Evan Melioris
Votes: 0
Answers: 1
Amplify Graphql appsync data return illogic bug
When I create an item, the item has created and I can get the item by id but when i get the list items doesn't contain the item created.
type Order @model @searchable{
id: ID! @primaryKey
ref: St...
amineRd
Votes: 0
Answers: 0