- If you pass a null as an attribute value, it will not create a foreign key row that value.
await make(db.Movie, { directorId: null })
// previously would create an extra db.Director entry
// not it does not
- Bugfix: Limit precision of
ContentTags.confidence
. This will fix the following issue:
Difference:
{
data: {
node: {
autogenerated: true,
- confidence: 0.059,
+ confidence: 0.059000000000000004,
content: Object { … },
id: 'Tag:1',
name: 'Principal',
},
},
}
- Added
ContentTags
andTags
tables