It's my first time using Amplify and GraphQL. I've used AWS Amplify to create my backend and connect to various cloud services (including a GraphQL API that connects to a DynamoDB table). I want to continue developing my front-end locally but draw data from a local DynamoDB (which I have set up according to this https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html) instead of my cloud resource. Is this possible?
I found this repo however not sure if I can integrate it with my current amplify/graphQL setup.
There isn't currently a native integration with DynamoDB local, unfortunately. Might I ask, why would you prefer that to a full table?
You might be able to get some test scenarios worked out with a local resolver, however they'd be hard-coded mocks rather than real, useful scenarios.