0
んTypeORM存在しない場合は作成し、これを回避するために、いくつかのfunctionnalityが含まれていますようTypeORMのアップサート -
let contraption = await thingRepository.findOne({ name : "Contraption"});
if(!contraption) // Create if not exist
{
let newThing = new Thing();
newThing.name = "Contraption"
await thingRepository.save(newThing);
contraption = newThing;
}
何か:Repository<T>.save()
、ドキュメントが言うそのうち:
let contraption = await thingRepository.upsert({name : "Contraption"});