Send additional data Google/Apple Signup

I want to send the onboarding data along with the signup for Google/Apple . How can I do this?

With email provider I can just use:
signUp.email(
      {
        email: values.email,
        password: values.password,
        name: values.name,
        timeFormat: onboarding.timeFormat,
        weekStartsOn: onboarding.weekStartsOn,
      }
)


Then I want to have a database hook to call an endpoint.
Was this page helpful?