Create or Edit components passes empty object {} for relations if their value is not provided
With this code, it posts below data
TypeORM is not able to process empty objects when they are lack of id property for create and edit
5 Replies
Hi @Onder. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
To address the issue where the
Create
or Edit
components pass empty objects {}
for relations if their value is not provided, you can ensure that the form does not include these fields in the submission if they are empty. This can be achieved by conditionally including the fields based on their values.
Here's how you can modify your code to handle this:
1. Check for the presence of the id
before including the field in the form submission.
2. Use the onFinish
handler to filter out empty objects before submitting the form data.
Here is an example of how you can achieve this:
In this example, the onFinish
handler checks if the category
and brand
fields have an id
before including them in the form submission. If the id
is not present, the field is deleted from the submission data.
This approach ensures that empty objects are not sent to the server, which should resolve the issue with TypeORM not being able to process empty objects.
For more information, you can refer to the refine documentation on forms and relationships (https://refine.dev/docs/guides-concepts/forms/#relationships-).
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@238969575289389057> kapa.ai is still learning and improving, please let us know how it did by reacting below
correct-apricotOP•5mo ago
@kapa.ai if you don't provide category or brand object, it can process the entity and insert. but if you provide an object for them you have to provide id property. but luckily you can pass null to those id properties and that also works fine. so i did initialValue={null} for the category.id and brand.id fields
Let me check the knowledge base for you. One moment! :books:
----------------------
To handle the scenario where you need to ensure that the
category
and brand
objects are either provided with an id
or set to null
, you can set the initialValue
to null
for the category.id
and brand.id
fields. This way, if no value is provided, the fields will be set to null
, which TypeORM can process correctly.
Here's how you can modify your code to set initialValue
to null
for the category.id
and brand.id
fields:
In this example, the initialValue
for both category.id
and brand.id
is set to null
. This ensures that if no value is provided, the fields will be set to null
, which TypeORM can handle correctly. Additionally, the onFinish
handler ensures that if the id
is not provided, the fields are explicitly set to null
before submitting the form data.
For more information, you can refer to the refine documentation on forms and relationships (https://refine.dev/docs/guides-concepts/forms/#relationships-).
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@238969575289389057> kapa.ai is still learning and improving, please let us know how it did by reacting below