We have a table in DynamoDB and we need to fetch data from the table using AppSync using AWS Java SDK.
AWSAppSync awsAppSyncClient;
public UserManagementAppSyncService(AWSCredentialsProvider credentialsProvider) {
this.awsAppSyncClient = AWSAppSyncClientBuilder.standard()
.withRegion("eu-central-1")
.withCredentials(credentialsProvider)
.build();
}
How to achieve this further? I cannot find further code to do this. Any leads?
The Resolvers were generated from a GraphQL schema using Schema first approach. It is a maven project AND the generated resolvers are in target folder.