Skip to content
#

typeorm

Here are 817 public repositories matching this topic...

ozkanonur
ozkanonur commented Apr 13, 2020

Issue type:

[x] question
[ ] bug report
[ ] feature request
[x] documentation issue

Database system/driver:

[ ] cordova
[x] mongodb
[ ] mssql
[ ] mysql / mariadb
[ ] oracle
[ ] postgres
[ ] cockroachdb
[ ] sqlite
[ ] sqljs
[ ] react-native
[ ] expo

TypeORM version:

[x] latest
[ ] @next
[ ] 0.x.x (or put your version here)

mbailey-eh
mbailey-eh commented Apr 29, 2019

Is it possible to update the documentation with more detail for getting started? For example, it says to modify the ".env" file but doesn't list where it is and a file search for "*.env" returns nothing. The only one that seems to be present is /usr/lib/node_modules/@primecms/cli/template/_.env on CentOS7 which has jinja2 syntax for the database but doesn't seem to affect anything when changed and

crud
lafeuil
lafeuil commented Mar 13, 2020

I have this model

class User {
  name: string;
  friends: User[];
}

And I have created a crud controller to manage and get user without friends property.
To get friends of a user, I have added an "adding route" :

  @Get(':id/friends')
  @UseInterceptors(CrudRequestInterceptor)
  async getFriends(@ParsedRequest() req: CrudRequest) {
    return this.
warthog
Mando75
Mando75 commented May 3, 2019

I was going to build something just like this package when I stumbled across your reddit post sharing this. Thanks for putting this together!

Just brief spec/version information:

TypeORM: "0.2.17"
Postgres: "0.2.16"
Typeorm-loader: "0.0.1-0.5"
ApolloServer Express: "2.0.7"
GraphQL: "14.2.0"
Typescript: "3.3.4000"

I'm running into an issue when loading the nested relationships via

Improve this page

Add a description, image, and links to the typeorm topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the typeorm topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.