Domo Everywhere

Domo Everywhere

Getting grammatical error/invalid error on domo query filters(where clause)

Member
edited May 2024 in Domo Everywhere

Hi,

I am calling a query on my ddx brick using domo query functions. Now when i try to pass filters which actually are the where clauses in which my where conditons are defined as comma separated. all are with IN operand.

but getting the following error:

"DA0012: A filter was provided to filter the data but it contains a grammatical error or is otherwise invalid and it could not be parsed. The offending filter is: company_id IN (207) . \nThe parsing error is: expression values cannot be parsed at company_id IN (207)"


And my where clause code is as below :

["company_id IN 207",
"facility_ids IN 3631,3632,3633,3634",
"participant_gender IN male"
]

And in the query I am making it as a join as describe in docs as below:

can any one please help me that what is the right format for passing where clauses? because for some columns i have integer values, and for some i have string values and both are comma separated.

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In

Best Answer

  • Contributor
    edited May 2024 Answer ✓

    I just tried those filters in our own system and this is how we are submitting that exact set of filters:
    This is the array of data that gets sent over.


    [
    { column: 'company_id', operator: 'IN', values: [ '207' ] },
    {
    column: 'facility_ids',
    operator: 'IN',
    values: [ '3631', '3632', '3633', '3634' ]
    },
    { column: 'participant_gender', operator: 'IN', values: [ 'male' ] }
    ]

    Give that a try^ and let me know if it works for you.


    Please 💡/💖/👍/😊 this post if you read it and found it helpful.
    Please accept the answer if it solved your problem.

    ** Was this post helpful? Click 💡/💖/👍/😊 below. **
    ** If it solved your problem. Accept it as a solution! ✔️ **

    Or do you need more help? https://calendly.com/matthew-kastner/15-minute-chat
    Did I help you out? Feedback is priceless and will help me more than you know.Write a review!

Answers

  • Contributor
    edited May 2024

    I think the fix might be very simple where you just need to wrap your options in brackets (particularly these type "[ ]") like so:

    ["company_id IN [207]",
    "facility_ids IN [3631,3632,3633,3634]",
    "participant_gender IN ['male']"
    ]


    Please 💡/💖/👍/😊 this post if you read it and found it helpful.

    Please accept the answer if it solved your problem.

    ** Was this post helpful? Click 💡/💖/👍/😊 below. **
    ** If it solved your problem. Accept it as a solution! ✔️ **

    Or do you need more help? https://calendly.com/matthew-kastner/15-minute-chat
    Did I help you out? Feedback is priceless and will help me more than you know.Write a review!

  • No @MattTheGuru, still same error!

    "DA0012: A filter was provided to filter the data but it contains a grammatical error or is otherwise invalid and it could not be parsed. The offending filter is: company_id IN [207],facility_ids IN [3631,3632,3633,3634],participant_gender IN ['male'] . \nThe parsing error is: expression values cannot be parsed at company_id IN [207],facility_ids IN [3631,3632,3633,3634],participant_gender IN ['male']"


    Is there any change that I will do!

  • Contributor
    edited May 2024 Answer ✓

    I just tried those filters in our own system and this is how we are submitting that exact set of filters:
    This is the array of data that gets sent over.


    [
    { column: 'company_id', operator: 'IN', values: [ '207' ] },
    {
    column: 'facility_ids',
    operator: 'IN',
    values: [ '3631', '3632', '3633', '3634' ]
    },
    { column: 'participant_gender', operator: 'IN', values: [ 'male' ] }
    ]

    Give that a try^ and let me know if it works for you.


    Please 💡/💖/👍/😊 this post if you read it and found it helpful.
    Please accept the answer if it solved your problem.

    ** Was this post helpful? Click 💡/💖/👍/😊 below. **
    ** If it solved your problem. Accept it as a solution! ✔️ **

    Or do you need more help? https://calendly.com/matthew-kastner/15-minute-chat
    Did I help you out? Feedback is priceless and will help me more than you know.Write a review!

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In