How to make CRUD of many to many relation in graphql api in redwood way

Is there a way like django to just send key in query variable
or it’s better to use expilxit many to many relation and make two request to do that

For your question: You need explicit relationship table created.

You have to use explicit many to many relationship IF you care about scaffolds or want to add more information to the table. See: Many-to-Many Relationships the Redwood Way™️

1 Like

thank you very much