OR-Filtering in resource embedding #3165
-
Environment
Description of issueHello, I want to use the general or filter für emedded resources. But getting an error:
So the embedded resources are not available in the or-Operator If I'm filtering directly lt_8 by: Obviously I'm only getting the values where one of the ors and the label of user_group in lt_8 matches. My question is: Is it possible to filter embedded resources by an or with the main table columns or do I miss something? Regards, Manfred |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You need to do null filtering on embedded resources to allow The
This syntax it's a bit inconvenient, so a better alternative is being discussed in issue #2563. |
Beta Was this translation helpful? Give feedback.
You need to do null filtering on embedded resources to allow
or
across embedded tables.The
or
operator only groups by columns in the same level, it cannot nest embedded resources, unless you usenot.is.null
for the embedding. In other words, in your first example, you need to separate thelt_8
filter in a separate query string and addlt_8.not.is.null
to theor
filter. Your second example is closer to what you want but you were missing the null filter inside theor
, like this:This syntax it's a bit inconvenient, so a better alternative is being discussed in issue #…