Closed wootwoot1234 closed 9 months ago
Hmm yeah with the various levels of type
, its hard to differentiate between a field named type and the type of a higher level field. Looking through the code, there isn't any great ways to resolve this.
I think the best solution would be to define a separate schema here, something like the following:
const Seam = new Schema({
accountId: {type: String, required: true},
type: {type: String, required: true}
},
{ _id: false }
)
const Account = new Schema(
{
seam: {
type: Seam.schema,
required: false
}
}
);
It also makes the schema definitions a bit more clear to a reader. Would this work for you?
This worked great, thank you!
Thanks for the great library, it works great!
I found a bug when using
type
as a field inside of atype
object, which causes the types to be generated incorrectly. Here's an example:will generate:
If we comment out the
type
definition, it works as expected: