We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Event Queries no longer require "rule": "input", so the existing custom Event Query code needs to be updated to work with them.
"rule": "input"
For example, this line:
multibaas-for-google-sheets/src/library/Build.js
Line 114 in de26ec6
Probably needs changing to something like (naive fix, does not completely solve the problem):
if (rule !== 'input') { node.rule = rule; }
The text was updated successfully, but these errors were encountered:
[#30] Improve event query filter (#35)
7cc7360
[#30] Fix event queries filters (#33)
cf1ffa4
daenamkim
Successfully merging a pull request may close this issue.
Event Queries no longer require
"rule": "input"
, so the existing custom Event Query code needs to be updated to work with them.For example, this line:
multibaas-for-google-sheets/src/library/Build.js
Line 114 in de26ec6
Probably needs changing to something like (naive fix, does not completely solve the problem):
The text was updated successfully, but these errors were encountered: