Skip to content
New issue

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

this.subQuery is not a function #227

Open
mirzasetiyono opened this issue Jun 18, 2022 · 1 comment
Open

this.subQuery is not a function #227

mirzasetiyono opened this issue Jun 18, 2022 · 1 comment

Comments

@mirzasetiyono
Copy link

mirzasetiyono commented Jun 18, 2022

i try to a insert a simple row using createQueryBuilder

await connection.createQueryBuilder() .insert() .into(User) .values( [ { wallet_account_public_key: "stringstring", name: "stringstring", joined_date: newEpoch(), roles: [] } ] ) .execute();

this query only doesnt work in the seed class impemention Seeder inside the run function

but when i do this query, its work

await connection.createQueryBuilder() .insert() .into(Role) .values( [ { name: "normal" }, { name: "admin" }, { name: "superadmin" } ] ).execute();

idk why but its very very very weird

@laolee010126
Copy link

laolee010126 commented Mar 21, 2023

I guess deprecated Connection makes this error

using with factory it does not make any error, but with connection make this error

ex)
connection .createQueryBuilder() .insert() .into(Topic) .values(topics) .execute();

but
const topics = await factory(Topic)().createMany(10);

this one dose not make any error for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants