-
Notifications
You must be signed in to change notification settings - Fork 57
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
Maha Validate query request before actually query #635
Comments
Hello @YixianNiu
test("successfully generate sync force dim driven dim only query with filters and order by and row count") {
|
Thanks for the info. But why we are using deserializeSyncWithFactBias? |
Hi,
We are making a API endpoint which checks whether a request query to maha is valid or not. The query looks like this:
`{
"cube":"fake_cube",
"selectFields":[
{
"field":"fake ID"
}
],
"filterExpressions":[
{
fake filter
},
],
"sortBy":[
{
"field":"fake Id",
"order":"Desc"
}
],
"rowsPerPage":10
}`
We want to check whether the field, cube , filter etc are right. Is there any method that can validate the request before process the query?
Thanks!
The text was updated successfully, but these errors were encountered: