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
{{ message }}
This repository was archived by the owner on Jan 2, 2023. It is now read-only.
Originally I tried to return null instead of a Relationship, but that removes the "relationships" block entirely. The only problem with the above solution is that it seems to only support "X-to-many" relationships. In other words, the response from the API looks like this:
"relationships": {
"group": []
}
I believe that in reality, I want it to look like this:
"relationships": {
"group": null
}
Is there any way to get this result? Thank you so much for this library! It's very flexible and useful.