SeedCompany / cord-api-v3

Bible translation project management API
MIT License
18 stars 4 forks source link

[Neo4j] Migrate creator on BaseNode to normalized relationship #3178

Closed CarsonF closed 5 months ago

CarsonF commented 5 months ago

Another miss from #3172 / #3163

The new schema is

(:BaseNode)-[:creator]->(:User { id: "user id" })

The data migration in that PR handled

(:BaseNode)-[:creator]->(:Property { value: "user id" })

But it missed places where we did

(:BaseNode { creator: "user id" })

I did already run these in dev to test.