Created
May 17, 2020 16:47
-
-
Save iceener/2de6d3b3523dc05493fa2d5fa83d2d19 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Named parameters | |
// Instead this: | |
articles(ids, published, orderBy, order) | |
articles([1, 4, 6], true, 'created_at', 'DESC') | |
// Do this: | |
articles({ ids, published, orderBy, order }) | |
articles({ ids: [1, 4,6 ], published: true, orderBy: 'created_at', order: 'ASC'}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment