Transform object null to null value

Created on 18 October 2024, 6 months ago

Problem/Motivation

In the same idea of breaking hateoas model we are not contrain to expose object when the value of data is null
An exemple is better than a long text:

"visual": {
"data": null,
"links": {
"related": {
"href": "https://mywebsite.com/data/uuid"
},
"self": {
"href": "https://mywebsite.com/data/uuid"
}
}
}

Steps to reproduce

Proposed resolution

As you imagine I use include feature so, my hateoas model is broke and when I'll have data in relationship in field visual I'll get all my data.
So I'm thinking about, why we won't return this model but instead :

"visual": null,

API changes

"visual": {
"data": null,
"links": {
"related": {
"href": "https://mywebsite.com/data/uuid"
},
"self": {
"href": "https://mywebsite.com/data/uuid"
}
}
}

VS

"visual": null,

🐛 Bug report
Status

Active

Version

1.8

Component

Code

Created by

🇫🇷France Mars0test

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024