I’m using amplify appsync in my electron app and all works except for the realtime events which means my app doesn’t get signalled when the data changes in the cloud. I know this is because it’s running in Node which is what amplify is looking for (JS.browserOrNode) however I don’t know how to fix it. Can someone advise me how
Tag: aws-appsync
How to send signed HTTP request from AWS Lambda to AppSync GraphQL?
I am not sure how to send signed http request do AppSync GraphQL endpoint. There is no library for do that in AWS. aws-amplify don’t work because works only in browser, not in Lambda function. aws-sdk for AppSync is only for admin usage, it doesn’t have methods for call user side api It is possible to make IAM signed HTTP
How to use the GraphQL Get query from aws in React
I’m trying to make use of the getquery for graphql in react.js. But I can’t figure out how to go about doing this. I already succeeded to use the list query. How does one go about using the get query? Thanks! Answer You need an ID to retrieve an item with any get query. getPatient(id:”YOUR ID HERE”){}` Something like… For