myQuery variable contains sql query. ```var result...
# suitescript
r
myQuery variable contains sql query.
Copy code
var results = query.runSuiteQL({
				query: myQuery,
			});
now myQuery will be a string, I want to keep the SQL query formatted in suiteScript and keep it as a string. Is there any way to keep the formatting? Currently I have to remove all the enters I have in my query and make it one liner, making it very hard to read.
e
Use 2.1 and template literals.
this 3
r
Thank you