We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add habtm (has and belongs to many) support ? Or maybe this is already supported in a different way ?
The use case is to avoid intermediate tables when it's not necessary, so we'd be able to write something like that
interface TagType { name: string; } const tagSchema = new Schema<TagType>({ name: { type: String }, }) interface UserType { tags: entity.Key[] } const userSchema = new Schema<EventType>({ teachers: { type: Schema.Types.Keys, ref: 'Tag' }, })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is it possible to add habtm (has and belongs to many) support ? Or maybe this is already supported in a different way ?
The use case is to avoid intermediate tables when it's not necessary, so we'd be able to write something like that
The text was updated successfully, but these errors were encountered: