Skip to content

Latest commit

 

History

History
36 lines (31 loc) · 926 Bytes

README.md

File metadata and controls

36 lines (31 loc) · 926 Bytes

AWS SAM APPSYNC POC

References

Best Practices for Working with AWS Lambda Functions

-- https://docs.aws.amazon.com/lambda/latest/dg/best-practices.html

How To Run

  1. Create S3 bucket and update same into Makefile AWS_BUCKET_NAME
  2. Execute make deploy-schema (Only first time or any new update in schema)
  3. Execute make package
  4. Excute make deploy

How To Test

  1. Goto AWS AppSync service from console.
  2. Execute below query
    query {
        allPosts {
            id
            author
            title
            content
            url
            ups
            downs
            relatedPosts {
                id
                title
            }
        }
    }