[Feature Request] Custom operators
See original GitHub issueThis feature allow developers to define new operators.
For example:
- define a new operator
json_contains
template
(alias, values)=> `JSON_CONTAINS(${alias}, ${values})`
- use like
filter=roles||json_contains||ROLE_A,ROLE_B
- generate
andWhere('JSON_CONTAINS(roles, :roles)',{roles: JSON.stringify(roles)})
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:9 (1 by maintainers)
Top Results From Across the Web
Nim 2 feature request - Custom operators - Nim forum
I've run into times where a proc is most naturally expressed as an operator, for example, something like a signed modulus, or checking...
Read more >Creating a custom Operator - Apache Airflow
Creating a custom Operator¶. Airflow allows you to create new operators to suit the requirements of you or your team. The extensibility is...
Read more >Feature Request - Interconnected - Intercom
Really simple functionality request: The ability to duplicate articles. Case in point: I have 3 similar articles to write which will be shown...
Read more >[Feature Request] Custom Text | Forum | Aximmetry
[Feature Request] Custom Text and fade time on Peekers. Studio Operators Composer. Back to Posts. When building visual control feedbacks e.g. with a...
Read more >File a Feature Request - TechDocs - Broadcom Inc.
Do you have a great idea for functionality that currently does not exist in the ... Our feature request process allows Rally users...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
If that helps, I was able to implement a custom operator by overriding
mapOperatorsToQuery
on the serviceThis is a bit of a manual work, but it could be generalised. And it makes sense to override the service protected methods to add new functionality.
Maybe all that is needed is a “Custom operator” section on the wiki.
@Diluka the PR I pushed would have fixed the problem (hopefully)