Skip to content
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

Deserializing a Resource Object/Relationship on create throws an error when no ID is provided #21

Open
hugofloss opened this issue Feb 12, 2018 · 2 comments

Comments

@hugofloss
Copy link

hugofloss commented Feb 12, 2018

I'm trying to create a new resource with an existing template relationship and an address relationship that should become a new resource. Example POST request:

{
  "data": {
    "type": "post",
    "attributes": {
      "title": "foo"
    },
    "relationships": {
      "template": {
        "data": {
          "type": "templates",
          "id": "1"
        }
      },
      "address": {
        "data": {
          "type": "addresses",
          "first_name": "John",
          "last_name": "Doe"
        }
      }
    }
  }
}

Because the address relationship does not contain an ID, it throws the following error:

A resource identifier object MUST contain ['id', 'type'] members.

I get that, because the JSON:API documentation clearly states:

A resource object MUST contain at least the following top-level members:
- id
- type

However, the documentation contains an important exception:

Exception: The id member is not required when the resource object originates at the client and represents a new resource to be created on the server.

That's exactly what I'm doing. Can we create an exception for this, or is this is incorrect way?

@hugofloss hugofloss changed the title Deserializing a Resource Object/Relationship on create throws an error when no ID is provdi Deserializing a Resource Object/Relationship on create throws an error when no ID is provided Feb 12, 2018
@heberuriegas
Copy link

Any workaround on this?

@nruth
Copy link

nruth commented Aug 9, 2018

I think this would need handling in jsonapi-parser
e.g.

That said, I don't think you can create the related object like that in json-api.

Batching / multiple creations at once seems to be work-in-progress for the spec:
json-api/json-api#1254 json-api/json-api#1197

So you'll want to work around that somehow by going off-spec. That doesn't help with this lib but it makes it less likely to get "fixed" here.

Regarding terminology and the creation optional ID thing, the error message is talking about "resource identifier objects", so let's see what those are.

http://jsonapi.org/format/#document-resource-identifier-objects says it needs id and type and doesn't have any get-outs for creation.

So what does permit creation without an ID?
http://jsonapi.org/format/#document-resource-objects talks about the client being able to request the server create the resource and fill in the id.

You've got attributes for a new record in the relationship data. What goes in there?
Looking at the spec for relationships, then click on "resource identifier objects" you're back at the original statement of id and type being required.

So while perfectly sensible to want to create them together, it looks like you'll need to create one then the other, 2 requests, or modify your api endpoint to take attributes for the other models and create them on the side, so putting them in the "post" payload instead of in the related address model without an id.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants