How to Extract Date & Time from a createdAt Field in Sequelize with Timezone Handling March 22, 2023When you're working with timestamps in databases, you'll often need to format dates properly and convert them to specific time zone...Read More
How to Add Search Filters Inside Sequelize include in Node.js / JavaScript March 20, 2023 When working with Sequelize, you might encounter situations where you want to apply filters on both the main model and its associations (...Read More
Add days ago key in api response. March 20, 2023 export const formatPassedAwayTime = ( data : any ) => { const formatedData = data ; const today = new Date (); for...Read More