Skip to content

Instantly share code, notes, and snippets.

@simonmcmanus
Created August 23, 2016 08:04
Show Gist options
  • Save simonmcmanus/0638faf03ba09bd480536bff53d68b30 to your computer and use it in GitHub Desktop.
Save simonmcmanus/0638faf03ba09bd480536bff53d68b30 to your computer and use it in GitHub Desktop.
joi validate query string as array: ?userIds=1&userIds=2
validate: {
params: {
userIds: Joi.array().items(Joi.string()).required().min(1)
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment