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
When GETtting a collection of resources, the generated Paging RootLinks (next, prev, ...) do not include the &include=... query parameter that was initially passed.
Awesome library.
Description
When GETtting a collection of resources, the generated Paging RootLinks (next, prev, ...) do not include the &include=... query parameter that was initially passed.
GET http://localhost:21021/telephones?page[size]=5&page[number]=4&include=locators
Result :
next: "http://localhost:21021/telephones?page[size]=5&page[number]=5",
prev: "http://localhost:21021/telephones?page[size]=5&page[number]=3",
first: "http://localhost:21021/telephones?page[size]=5&page[number]=1",
last: "http://localhost:21021/telephones?page[size]=5&page[number]=11"
Expected
next: "http://localhost:21021/telephones?page[size]=5&page[number]=5&include=locators",
prev: "http://localhost:21021/telephones?page[size]=5&page[number]=3&include=locators",
first: "http://localhost:21021/telephones?page[size]=5&page[number]=1&include=locators",
last: "http://localhost:21021/telephones?page[size]=5&page[number]=11&include=locators"
Environment
The text was updated successfully, but these errors were encountered: