Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

createManyAndReturn return order #6746

Open
alouini333 opened this issue Mar 17, 2025 · 0 comments · May be fixed by #6783
Open

createManyAndReturn return order #6746

alouini333 opened this issue Mar 17, 2025 · 0 comments · May be fixed by #6783
Assignees
Labels
docs Documentation creation, updates or corrections Unplanned

Comments

@alouini333
Copy link

Hi,

Today, I was checking the docs regarding createManyAndReturn and I saw the following example.

https://www.prisma.io/docs/orm/prisma-client/queries/relation-queries#using-nested-createmany

const categories = await prisma.category.createManyAndReturn({
  data: [
    { name: 'Fun', },
    { name: 'Technology', },
    { name: 'Sports', }
  ],
  select: {
    id: true
  }
});

const posts = await prisma.post.createManyAndReturn({
  data: [{
    title: "Funniest moments in 2024",
    categoryId: categories[0].id
  }, {
    title: "Linux or macOS — what's better?",
    categoryId: categories[1].id
  },
  {
    title: "Who will win the next soccer championship?",
    categoryId: categories[2].id
  }]
});

This example gives the impression that the returned categories order is matching the input order, even though this is not always the case (Check this discussion here prisma/prisma#24894)

My suggestion is the following, we can update the workaround example like this

const categories = await prisma.category.createManyAndReturn({
  data: [
    { name: 'Fun', },
    { name: 'Technology', },
    { name: 'Sports', }
  ],
  select: {
    id: true
  }
});

const posts = await prisma.post.createManyAndReturn({
  data: [{
    title: "Funniest moments in 2024",
    categoryId: categories.filter(category => category.name === 'Fun')!.id
  }, {
    title: "Linux or macOS — what's better?",
    categoryId: categories.filter(category => category.name === 'Technology')!.id
  },
  {
    title: "Who will win the next soccer championship?",
    categoryId: categories.filter(category => category.name === 'Sports')!.id
  }]
});

Also, I believe that the fact that the order is not garanteed should be mentioned in the remarks of createManyAndReturn section

https://www.prisma.io/docs/orm/reference/prisma-client-reference#createmanyandreturn

@alouini333 alouini333 added the docs Documentation creation, updates or corrections label Mar 17, 2025
@mhessdev mhessdev added the Unplanned label Mar 20, 2025 — with Linear
@mhessdev mhessdev assigned mhessdev and jharrell and unassigned mhessdev Mar 20, 2025
@jharrell jharrell linked a pull request Mar 28, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs Documentation creation, updates or corrections Unplanned
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants