Tag: Aws Lambda
-
GraphQL – Apollo Client without using hooks?
11 I am attempting to use the Apollo GraphQL Client for React Native. However, in some parts of my app I need to do a mutation on the GraphQL data, in such a way that the interface should not be exposed to the user. For instance, on my sign up page, I want to create…
-
Unexpected LAMBDA_RUNTIME Failed to post handler success response. Http response code: 413 error
14 So I have a serverless express application running in a Lambda. One request (response size around 800KB) keeps returning a LAMBDA_RUNTIME Failed to post handler success response. Http response code: 413. error. I thought it could be due to some internal logic timing out, and added logs, and all the fetch and processing takes…
-
ApolloServer: createAPIGatewayProxyEventV2RequestHandler — how to set up CORS?
0 I’m splitting a project into client/server sub projects, so now I have to deal with CORS issues between the client and server running under different ports on localhost. I’m using ApolloServer 4, and can’t find any documentation for setting the Access-Control-Allow-Origin header for an AWS lambda server. This is the setup: import { ApolloServer…
-
How to type the event of a serverless resolver sent from an Amplify GraphQL call
2 I am trying to type the event object coming from my AWS Amplify/NextJS front-end. It is sent via Amplify/GraphQL and being received in a NodeJS AWS Lambda. The typescript interface contained in import { AppSyncResolverEvent } from "aws-lambda"; – but this doesn’t quite match the event object that’s being received. Can someone please advise…
-
AWS Developer (GraphQL, Node JS and Typescript) – Remote – Talent Hires – Remote
Talent Hires Remote $50 – $60 Accepts corp to corp applications, Contract: Independent, W2, 2 Year(s) Skills AWS AppSync GraphQL JSON Jmeter S3 Terraform Typescript Unit testing AWS Serverless aws lambda Job Description Hi, Urgent need for AWS Developer (GraphQL, Node JS and Typescript) AWS Developer: • Technical skills – Node JS16.x, Typescript, GraphQL, ECS…
-
400 response without any context in AWS Appsync where Lambda is a Data source
0 I’m getting the below response in AWS Appsync console, when i try to invoke graphql API. Request failed with status code 400 Query: query MyQuery { getUserData(inputArguments: $inputArguments) { __typename } } Variables: { "inputArguments": { } } I’m unable to debug it as Lambda is not being invoked. amazon-web-services aws-lambda graphql aws-appsync Share…
-
GraphQL Authorization Error When Using AWS Lambda Trigger for Post-Confirmation
0 I am encountering an authorization error when trying to execute a GraphQL mutation (createPlayer) in an AWS Lambda function that is triggered after user confirmation. The error message I’m receiving is: **PostConfirmation failed with error GraphQL error: Not Authorized to access createPlayer on type Mutattion ** Lambda Function (Node.js): const appsync = require("aws-appsync"); const…