You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
effexe
changed the title
Sort params in pagiation links missing '=' and the operator
Sort params in pagination links missing '=' and the operator
May 7, 2018
effexe
changed the title
Sort params in pagination links missing '=' and the operator
Filtered params in pagination links missing '=' and the operator
May 7, 2018
effexe
changed the title
Filtered params in pagination links missing '=' and the operator
Filtered params in pagination links missing '=' before the operator and ':' after the operator
May 7, 2018
effexe
pushed a commit
to effexe/JsonApiDotNetCore
that referenced
this issue
May 7, 2018
Uh oh!
There was an error while loading. Please reload this page.
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"
}
The text was updated successfully, but these errors were encountered: