@crft/appsync-gateway
v2.0.0
Published
Utility method for making API calls to AppSync from Lambdas in AWS.
Downloads
48
Readme
Appsync API Gateway
Utility method for making API calls to AppSync from Lambdas in AWS.
This library essentially implements the suggested approach outlined by AWS Amplify Docs in a nice package.
Usage
Install via NPM:
npm i @crft/appsync-gateway --save
then use like:
const {
GraphQLGateway,
IAMCredentialsStrategy,
APIKeyCredentialsStrategy,
AuthHeaderCredentialsStrategy
} = require('@crft/appsync-gateway');
// IAM Mode
const creds = new IAMCredentialsStrategy();
// API Key Mode
const creds = new APIKeyCredentialsStrategy(API_KEY);
// Auth Headers Mode
const creds = new AuthHeaderCredentialsStrategy(authHeader);
const gateway = new GraphQLGateway(
creds,
process.env.API_API_GRAPHQLAPIENDPOINTOUTPUT
);
const myQuery = `
query ListTodosOperation {
listTodos {
items {
title
}
}
}
`;
await gateway.runQuery({
operationName: 'ListTodosOperation',
query: myQuery,
variables: {
input: {}
}
});
Commands
npm build
- Run the typescript build