Closed
Description
Filtered parameters in pagination links are missing the equals sign and the operator.
Example:
"links": {
"last": "http://localhost/endpoint?page[size]=50&page[number]=1&filter[filter1]eqApplied&filter[filter2]eqPROD"
}
should be:
"links": {
"last": "http://localhost/endpoint?page[size]=50&page[number]=1&filter[filter1]=eq:Applied&filter[filter2]=eq:PROD"
}