With Typeorm + NestJS + Postgres is there a way to update multiple records with varying conditions and varying values in a single query. Normally I could do awa
I would like to know if there is a feature of TypeORM that supports raw sql queries for Insert Update Delete Select etc..
I want to create a TypeORM Postgres connection with Heroku using Typegraphql, but I receiving the following error message: 'createConnection' is deprecated.ts(6
I am getting the following error when trying to create these entities. TypeError: Class extends value undefined is not a function or null I am assuming this h
I'm working on a graphQL backend with TypeORM I found FREETEXT, CONTAiNS, FREETEXTTABLE and CONTAINSTABLE options for fulltext searching in my SQL database. As
I have created a sample application to save data for a user. I wanted to know how to validate it before saving and showing the response in JSON. I have got a re
This query works well on the database, however I'm not able to make it work by using typeorm createQueryBuilder. SELECT * FROM content INNER JOIN FreeTextTable
I have a user entity: @Entity() export class User extends BaseEntity { @PrimaryGeneratedColumn('uuid') id: string; //... @OneToOne(() => UserActive
I developed typeorm querybuilder. For the purpose of debugging, I'd like to show the generated SQL query. I tested printSql() method, but it didn't show any SQL
After the new typeorm release a have some troubles to work with migrations. Some time ago i was using that code and it work entities: ['./src/modules/**/infra/t
In my queries I'm using TypeORM find option. How can I have IS NULL condition in the where clause?
this.sampleRepo.find ( { where: { id: In ["1","7","13"] } order: {
I am using NestJS, TypeORM, and MySQL to build a web application. I am using a .env file to pass in some environment variables for connecting to my local datab
I am having an issue running migrations with TypeORM (with the intent of establishing my database for use in local development). In running a migration on the i
all. Include details about your goal: I'm trying to mock repository in e2e test Describe expected and actual results: Request to server will not have access
I want to be able to query documents having a specific field's value not empty, if the field is present. Normally I'd do something like: client_comment: { '$exi
Some entities in my database have a property which is their associated key on AWS S3, for example: // my.entity.ts @Column() s3Key: string; I would like one of