drizzle-team / drizzle-graphql

Automatically generate GraphQL schema or customizable schema config fields from Drizzle ORM schema
https://www.npmjs.com/package/drizzle-graphql
Apache License 2.0
34 stars 1 forks source link

Drizzle add relational objects during insert/update? #3

Closed anthonyhoegberg closed 1 month ago

anthonyhoegberg commented 2 months ago

Is it possible to get relations in the mutations (insert/update) as well, like lets say we have a user and a post table currently when i do a query i can request the posts as well however i would also like to be able to add posts during the creation of the user object.

when i create a user, i would like to also add posts as a subfield in the generated UserInsertInput type so when i create the user object, i can attach posts to it instead of doing 2 different inserts.

This might not be a good example with user and post, but i have other data where this would be the easiest way to insert a lot of data at once, and i have many different relations aswell

Sukairo-02 commented 2 months ago

I'll check if and how that's possible to implement, would likely need Drizzle RQB to support such actions to begin with.

anthonyhoegberg commented 2 months ago

Thank you for your quick response

Sukairo-02 commented 1 month ago

It's not something I can implement without Drizzle doing it first in the RQB, so until then this issue is on hold.