Robin
Results
1
issues of
Robin
I'm trying to insert something in the database as following: ```js const test = async () => { const user = await User.query().insert({ email: '[email protected]', password: 'test123' }) console.log(user) }...