This topic was automatically generated from Slack. You can find the original thread here.
Hello , I can import mssql normally
import mssql from 'mssql'
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
console.log('mssql', mssql)
// Return data to use it in future steps
return mssql
},
})
Maybe the error is because you have called the variable mssql instead of sql as your import?
You are life saver.
Many thanks. Yes, it’s working now. ![]()
