Questions tagged [aws-appsync-resolver]

69 questions
0
votes
1 answer

Appsync how to use [String] inside query

I am trying to get products using specific brand names. I have set up my query as brandList : [String] and the query is as follows { "terms": { "brand_name": $brandList …
Gurjit Singh
  • 131
  • 2
  • 10
0
votes
1 answer

AWS AppSync Nested Resolver - how to reuse arguments from parent

Heyo. I've got an AppSync resolver with a field that is attached to a resolver. The query accepts an argument that is the same argument the inner resolver would need. For the sake of terseness, I'd like to just pass it down from context instead of…
nbpeth
  • 2,967
  • 4
  • 24
  • 34
0
votes
0 answers

Why Ampliy API folder does not show in Amplify

I am working with a new client, but it seems I can't find the Amplify Graphql API in the amplify folder. I used to see the folder when working with Amplify but in this case, after pulling the environment I can't see the folder. amplify…
BeQ
  • 1
0
votes
1 answer

AppSync returns attribute values as null from AuroraDB

I am trying to implement Appsync with Aurora RDS. Get query returns response with all the attribute values as null. I think it is able to connect with the DB properly because I have seen some error when I deliberately misspelled the table name. I am…
np10
  • 109
  • 1
  • 10
0
votes
1 answer

Get Total Number of AppSync requests generated for certain period of time | AWS | APPSYNC

Is there a way to get the Total number of (appsync) api requests made to application for a certain time period? I'm testing a module of application and it is generating requests. I want to calculate the total number of requests generated for all the…
0
votes
0 answers

Can I make a post call to HTTP endpoint from AWS AppSync Console in free tier?

I have created a schema and tested the query (by making a GET request to the HTTP Endpoint as data source) in it which works fine. However, any mutation (containign POST/PUT/PATCH/DELETE requests) to HTTP endpoint does not send the value in request…
0
votes
3 answers

AppSync HTTP resolver mapping template not working with method PATCH

I'm using this AppSync resolver mapping template to update a user: { "version": "2018-05-29", "method": "PATCH", "params": { "headers": { "Content-Type": "application/json" }, "body":…
Maucan
  • 143
  • 1
  • 12
0
votes
2 answers

In Terraform how to reference ID's of one resource in another resource?

Below is the code I have where am stuck in capturing function_id from aws_appsync_function.appsync_functions and reference to create aws_appsync_resolver #---- Create AppSync Functions ----- resource "aws_appsync_function" "appsync_functions" { …
0
votes
1 answer

appsync rds resolver - insert polygon

I'm trying to insert an object containing a polygon using aws appsync resolvers into an aws aurora rds postgres instance which has POSTGis extension installed. I have managed to create insert the new row when running the sql statement via the psql…
hyprstack
  • 4,043
  • 6
  • 46
  • 89
1 2 3 4
5