Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
104 views
in Technique[技术] by (71.8m points)

TypeOrm: PrimaryGeneratedColumn() starts from 1 even when data exist

I'm using Typeorm + typegraphql + Postgre.

I have a Contact table, and defined as:


@Entity("contact")
@ObjectType()
export class Contact extends BaseEntity {
  @Field((type) => Number)
  @PrimaryGeneratedColumn()
  readonly id!: number;

  @Field()
  @Column({ length: 128, unique: true })
  name!: string;
}

If the db is empty, id generated starts from 1, adding new contacts with graphql works well.

But if I import some data with pgAdmin, then add new contacts, postgre complains duplicate key value violates unique constraint "PK_xxx", and id still generated from 1, which caused the error.

Is there any way to make this work?

question from:https://stackoverflow.com/questions/65557859/typeorm-primarygeneratedcolumn-starts-from-1-even-when-data-exist

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...