0

我正在尝试创建一个用户,该用户是另一个用户的孩子。我通过存储所有用户、父母和孩子的用户表来管理这种关系。有一个单独的表,只有孩子的 id 和父母的 id。

我的问题是,当我创建一个子帐户时,我想Relationship使用将要创建的用户 ID 在表中创建一个条目。我完全不确定我应该怎么做。

// schema.sql

CREATE TABLE "public"."Relationship" (
    id SERIAL PRIMARY KEY NOT NULL,
    parent_id INT NOT NULL,
    FOREIGN KEY (parent_id) REFERENCES "User" (id),
    child_id INT NOT NULL,
    FOREIGN KEY (child_id) REFERENCES "User" (id)
)

CREATE TABLE "public"."User" (
    id SERIAL PRIMARY KEY NOT NULL,
    name VARCHAR(128) NOT NULL,
    email VARCHAR(128) UNIQUE,
    password VARCHAR(128) NOT NULL,
    isChild BOOLEAN NOT NULL DEFAULT false
    created_at TIMESTAMP NOT NULL DEFAULT NOW();
);

// CreateChild 用户变异

export const createChildAccount = mutationField('createChildAccount', {
  type: 'User',
  args: {
    name: stringArg({ required: true }),
    password: stringArg({ required: true }),
  },
  resolve: async (_parent, { name, password }, ctx) => {
    const userId = getUserId(ctx);
    if (!userId) {
      // TODO -think I might need to throw an error here
      return;
    }
    const user = await ctx.prisma.user.create({
      data: {
        name,
        password,
        ischild: true,
        child: {
          create: { child_id: ???????? },
        },
        parent: {
          connect: {id: userId}
        }
      },
    });
    return user;
  },
});

我真的应该创建一个Relationship然后使用它来连接父级并创建子级吗?

4

2 回答 2

2

如果您只是存储id孩子和父母的,我建议在架构中使用与同一个表 hainv 类似的自关系

model User {
  id        Int      @default(autoincrement()) @id
  name      String
  parent    User?    @relation("UserToUser", fields: [parent_id], references: [id])
  parent_id Int?     @unique
  createdAt DateTime @default(now())
}

对于SQL中的相同,它将如下

create table "User" (
    createdAt timestamp default now(),
    "id" serial primary key,
    "name" varchar not null,
    parent_id int unique,
    foreign key (parent_id) references "User"("id") on delete set null on update cascade
)

那么您的create/update电话将通过以下方式非常简单

const parent = await prisma.user.create({
  data: {
    name: 'abc',
  },
})

await prisma.user.create({
  data: {
    name: 'def',
    parent: {
      connect: {
        id: parent.id,
      },
    },
  },
})
于 2020-04-27T15:39:39.413 回答
0

事后看来,这是一个简单的解决方案。我在 中创建了条目,User然后在Relationship连接父帐户和子帐户的表中创建了一个条目

export const createChildAccount = mutationField('createChildAccount', {
  type: 'User',
  args: {
    name: stringArg({ required: true }),
    password: stringArg({ required: true }),
  },
  resolve: async (_parent, { name, password }, ctx) => {
    const userId = getUserId(ctx);
    if (!userId) {
      return;
    }
    const user = await ctx.prisma.user.create({
      data: {
        name,
        password,
        ischild: true,
      },
    });
    await ctx.prisma.relationship.create({
      data: {
        parent: {
          connect: {
            id: userId,
          },
        },
        child: {
          connect: {
            id: user.id,
          },
        },
      },
    });
    return user;
  },
});
于 2020-05-01T08:54:40.623 回答