python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
lb4 app throws "Error: ENOENT: no such file or directory"
I am trying to create a loopback4 application following the official loopback documentation
nvm version: 0.39.1
node version: v17.4.0
npm version: 8.3.1
I installed loopback4 using npm i -g @loopbac...

Napstablook
Votes: 0
Answers: 1
How to filter dates based on its time in Loopback 4?
I want to find out all the dates which have time more than 10.30 am.
let whereBuilder = new WhereBuilder();
whereBuilder.gt('sessionStartedOn', '10:30:00');
Obviously, this doesn't work. Are there an...
user2869736
Votes: 0
Answers: 1
Having both id and _id in Loopback4 model
I'm trying to query a mongodb collection with documents containing both id (a uuid) and _id (mongo generated), I defined both id and _id in the model
@property({
type: 'string',
id: true,
generated...

Duy Hiếu
Votes: 0
Answers: 1