-
-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generalized handling of link objects #1062
Comments
Should include an end-to-end test for |
GET /api/todoItems/1/assignee HTTP/1.1 {
"data": {
"type": "people",
"id": "1",
"attributes": {
},
"relationships": {
},
"links": {
"self": "/api/people/1" // <---
}
}
}
Edit: Based on the insights gained from implementing #1518 (ie not hiding as many links as possible), this test doesn't need to be added. |
The current state of the OpenApi integration has a hardcoded configuration for where and when links are included in schemas.
In JADNC this can be configured by:
togglingJsonApiOptions.DefaultPageSize
(enabling/disabling paging links)page[size]
query string parameter.LinkTypes
cascading configurationThese settings should be taken into account when links are included or excluded in the generation of schemas.
The text was updated successfully, but these errors were encountered: