Created
July 22, 2019 09:36
-
-
Save koingdev/cfe4224b5cd414135156e92b0f8e7a5f to your computer and use it in GitHub Desktop.
Query items with PK and response in an order based on range key
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version" : "2017-02-28", | |
"operation" : "Query", | |
"query" : { | |
"expression" : "author = :author", | |
"expressionValues" : { | |
":author" : $util.dynamodb.toDynamoDBJson($ctx.args.author) | |
} | |
}, | |
## false -> DESC ORDER | |
"scanIndexForward" : false | |
} |
@koingdev Thank you! didn't know u replied here till today haha.
So as long as I have the scalable database structure, I can user resolvers for custom queries and mutations.
I ended up modifying the schema file little bit the way I think it makes sense here(https://gist.github.com/ohsik/1506c0530a6744cff158f8af408be731) and moving on to building the app again.
Thank you for the help again!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ohsik