-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Passing SQL Query to DB middleware #83
Labels
enhancement
New feature or request
Comments
Duplicate of #51 |
Rememeber that in JSON we don't have the newlines to the query would be in form of {
"myQuery": "SELECT *\n FROM call\n ORDER BY\n call.employee_id ASC,\n call.start_time ASC;"
} or simply without them ;p {
"myQuery": "SELECT * FROM call ORDER BY call.employee_id ASC, call.start_time ASC;"
} |
Yes we can do that, but we can also use YAML? |
Merged
puria
added a commit
that referenced
this issue
May 17, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Two statements in the DB-mw like:
Queries (they are randomly selected sample queries):
The text was updated successfully, but these errors were encountered: