71 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
70
views
I have a working AWS Appsync application that uses OPENID_CONNECT as authorization, when I added API_KEY as additional broke the old routes
I have a working AWS Appsync application that uses OPENID_CONNECT as authorization, when I added API_KEY as additional broke the old routes. For some reason in the appsync schema it had in all routes ...
0
votes
1
answer
51
views
Http Resolver fails whem IamAuthorizer in HttpApi is enabled
I am running into the following situation:
I've configure an apiagateway endpoint (http api) with IamAuthorizer. I am using it as a datasource for appsync. I see the following happening
When I do de ...
0
votes
0
answers
19
views
Logging error when function fails in AWS Appsync
I was trying to understand where in stash are errors stored when a function fails in AppSync.
My resolver template looks like follows:
export function request(ctx) {
// performs some operation
return {...
0
votes
1
answer
42
views
How to share data between sibling field resolvers in AWS AppSync
I have a GraphQL like following -
type File {
name: String
size: Int
}
type FileStorage {
files(page_id: String): [File]
continuation_token: String
}
Both files and continuation_token need ...
1
vote
2
answers
139
views
Set an authType of "User Pool Authorization" when testing a GraphQL resolver in the AppSync console
I am trying to debug authentication rules on a GraphQL API (one created by Amplify).
I can open the AWS AppSync Console and see the auth functions that Amplify has created for my Message object: the ...
0
votes
0
answers
58
views
AWS Amplify CLI - Generating wrong resolvers
I'm using AWS Amplify with the CLI (version 12.13.1) and the Amplify backend library to generate code for my project. Everything was working well until I added a new Owner: User field in the Event ...
0
votes
1
answer
158
views
How to resolve String field using AWS appsync javascript resolver with NONE resource
I have this appsync GraphQL schema with type
type Place {
id: ID!
name: String!
nameTranslations: FieldTranslations
}
And then I have resolvers for this type and paginated type that works just ...
0
votes
1
answer
95
views
AppSyncJS selectionSetList is undefined in info object
I have the following AppSyncJS Resolver request function and I'm using a Lambda function as Data Source:
export function request(ctx) {
return {
operation: 'Invoke',
payload: {
...
0
votes
1
answer
140
views
AppSync util method converts filter to non valid condition object
I want to grab the results using my sort key (resource_id) and a property defining the user's workspace id. But I run into the following error message every time: "code.js:15:12: Property 'filter'...
-1
votes
1
answer
83
views
How to query dynamoDB based on key + attribute?
I am using appsync resolvers with dynamoDB. I have a table that contains some job items records, each job spans a set of items and each of those items is a task that has a specific status: ["...
1
vote
1
answer
183
views
message: `RDSHttp:{"message":"The schema parameter isn't supported."}` I am getting this error when calling api fro appsync and rds
I am getting this error and my 2-3 app is affected.Can Anyone help me to resolve it
I tried most of the way provided ,If I am creating new Api then its working but for older one its not working.If ...
0
votes
1
answer
93
views
Appsync Query - items are always null
I'm not sure what I'm missing. When I query my DynamoDB table using custom Appsync_JS resolvers, the result data is always null, even though the Cloudwatch logs show that the items are being retrieved....
1
vote
0
answers
105
views
Issue with Overriding Subscription Function Code in AppSync Resolver Pipeline
I’m currently working on an AWS AppSync project and I’m facing an issue with overriding the default subscription function in my resolver pipeline. Here is a detailed explanation of the problem:
...
1
vote
0
answers
74
views
I am working on aws appsync project where one of my resolver is not getting identity information in the context while others are getting
I am working on an AWS sample project where a user will ask question which will goes to AWS AppSync then it will goes to a Lambda function then it will go to Amazon Bedrock where my large language ...
2
votes
3
answers
623
views
aws appsync custom subscription resolver: connection failed, runtime error
What i'm trying to achieve: custom javascript resolver for a subscription.
I understand that when you use appsync and create a type for e.g.
type chatMessage { channel: String! userId: String! text: ...