Hello
I have the following codes in my entity:
@ManyToOne(() => OrganizationEntity, (organization) => organization.code)
@JoinColumn({ name: 'organizationCode', referencedColumnName: 'code' })
organization: OrganizationEntity;
@Column({ name: 'organizationCode' })
organizationCode: number;
now in admin dashboard, "Adminjs" does not recognize "referencedColumnName" and it is recognizing it as "organizationId" while listing, creating, editing.
Is there a way to add "referenceColumnName" in "Adminjs" config?