Hi! I'm working on a react + graphQl Custom Card. I've 3 different object related A -> B and B -> C Into the view I attached I can list all B objects related do A and all C objects related to each B object.
Now I need to edit some fields, in B objects and C objects. I would like to use a component like one with green arrow. Is it possible?
Pietro Poli Wrike Certified Professional ★ HubSpot Certified Trainer
Yes, you can add editing components in a React + GraphQL custom card. Here’s how you can achieve this,
1. You can use controlled form components (like input, select, etc.) in React to enable editing. Each component can hold the values of the B or C objects you want to edit.
2. When a field is edited, trigger a mutation via your GraphQL API to update the relevant fields in the B or C objects.
3. To improve user experience, you can implement optimistic updates so the UI reflects changes immediately, even before the mutation completes.
In summary, use React form components for editing and GraphQL mutations to update the data on the backend.