I have a Next.js frontend and a GraphQL backend (u...
# talk-kratos
q
I have a Next.js frontend and a GraphQL backend (using apollo-server-express) and I’m wondering what the best way to insert a user into my backend’s database is after they register? Do I send a POST request to my backend with the user’s
identity
and then create it from there, or is there a better way of handling it?
b
Post Registration Webhooks work well for your use case.
q
Thanks will check it out
👍 1