Skip to content

Instantly share code, notes, and snippets.

@iceener
Created May 17, 2020 16:47
Show Gist options
  • Save iceener/2de6d3b3523dc05493fa2d5fa83d2d19 to your computer and use it in GitHub Desktop.
Save iceener/2de6d3b3523dc05493fa2d5fa83d2d19 to your computer and use it in GitHub Desktop.
// 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