Giter Site home page Giter Site logo

Comments (5)

B4nan avatar B4nan commented on September 2, 2024 2

No you can't. I told you to swap those, so where you have mappedBy you will have inversedBy and vice versa.

Btw I thought the inversedBy was supposed to be used in the owning side.

Yes, and you had it on the inverse instead. The owning side is where you have the database column.

FYI the inverserBy is actually optional, the owning side does not need to point anywhere, only the inverse side needs to specify the mappedBy option.

from nestjs.

thiagomini avatar thiagomini commented on September 2, 2024

Additional info below:

Profile Schema

import { BigIntType, EntitySchema } from '@mikro-orm/core';
import { Profile } from './profile.entity';
import { User } from './user.entity';

export const profileSchema = new EntitySchema<Profile>({
  class: Profile,
  tableName: 'profile',
  forceConstructor: true,
  properties: {
    id: {
      type: BigIntType,
      primary: true,
      autoincrement: true,
    },
    user: {
      entity: () => User,
      reference: '1:1',
      mappedBy: 'profile',
      ref: true,
    },
    imageUrl: {
      type: String,
    },
  },
});

User Schema

import { BigIntType, EntitySchema } from '@mikro-orm/core';
import { User } from './user.entity';
import { Address } from './address.entity';
import { Profile } from './profile.entity';

export const userSchema = new EntitySchema<User>({
  class: User,
  tableName: 'user',
  forceConstructor: true,
  properties: {
    id: {
      type: BigIntType,
      primary: true,
      autoincrement: true,
    },
    firstName: {
      type: 'string',
    },
    lastName: {
      type: 'string',
    },
    email: {
      type: 'string',
    },
    addresses: {
      reference: '1:m',
      entity: () => Address,
      mappedBy: 'user',
    },
    profile: {
      reference: '1:1',
      entity: () => Profile,
      inversedBy: 'user',
      nullable: true,
    },
    createdAt: {
      type: 'timestamp',
    },
    updatedAt: {
      type: 'timestamp',
    },
  },
});

⚠️ Apparently, the user's id is not being populated. I have no idea why 🤔

from nestjs.

B4nan avatar B4nan commented on September 2, 2024

because it is inverse side, as such it does not represent any database column. your schema is not in sync with entity definition apparently, if you expect such column to exist. swap inversedBy with mappedBy (in both entities)

from nestjs.

thiagomini avatar thiagomini commented on September 2, 2024

Hey Martin, thanks for the speedy reply! But can we define mappedBy in both entities? I actually get this error when I do so:

MetadataError: Both User.profile and Profile.user are defined as owning sides, use 'mappedBy' on one of them

Btw I thought the inversedBy was supposed to be used in the owning side. What is it's purpose instead?

from nestjs.

thiagomini avatar thiagomini commented on September 2, 2024

Got it! Thanks, Martin!

from nestjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.