So, getParameters() has a limit of getting a maximum of 10 parameters only. ðŸ˜
It results in the following error if the number of parameters is more than 10:
UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1):
ValidationException: 1 validation error detected: Value '[omitted-parameter-names]' at 'names'
failed to satisfy constraint: Member must have length less than or equal to 10
This PR fixes this by calling getParameters() multiple times depending on the total number of parameters. 🎉
Hey there! 👋
So,
getParameters()
has a limit of getting a maximum of 10 parameters only. ðŸ˜It results in the following error if the number of parameters is more than 10:
This PR fixes this by calling
getParameters()
multiple times depending on the total number of parameters. 🎉