:wave: Is it possbile to connect many record to on...
# orm-help
s
👋 Is it possbile to connect many record to one at one request?
i try:
Copy code
data: {
        createdAt: new Date(),
        users: {
          connect: {
            uid: [interaction.user.id, user.id],
          },
        },
      },
l
I think it is connect: [ { id: "id-1"}, { id: "id-2"} ]
s
let me try