Using LB4 + MySQL DB through loopback-connector-mysql to create tables on DB. A {id: string, name: string} id names 0007bc40-814b-11ec-8128-4df48bd1ae4d John 0
I have Application model with following relation: @belongsTo(() => Ido) idoId: string; export interface ApplicationRelations { ido?: IdoWithRelations
I am creating a loopback model (model1) which refers to another model and want to hide some properties of the nested model (model2). Also, I just want them to b
I'm trying to get a filtered record from loopback, but I don't understand why nodejs gives error on fallowing commands: const https = require('https'); var
I need to save base64 image in loopback model. When i'm saving base64 image i get an error saying . I have tried updating in middleware same added below, i have
I can't find any ressources on how to change the success HTTP code using loopback 4. For example : 201 "created" on post method 204 "no content" on delete me
Customer hasMany relationship with jobs Filtering by the top-level property works as shown below Customer.find({ include: ["jobs"],where :{username:"mel"} },