Last active
August 16, 2019 14:47
-
-
Save travist/a64cd304b43a7d5efcfde33d8837fac1 to your computer and use it in GitHub Desktop.
JSON Logic | Show when more than 3 true
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
">=" : [ | |
{"reduce":[ | |
[ | |
{"if" : [{"var": "data.a"}, 1, 0]}, | |
{"if" : [{"var": "data.b"}, 1, 0]}, | |
{"if" : [{"var": "data.c"}, 1, 0]}, | |
{"if" : [{"var": "data.d"}, 1, 0]}, | |
{"if" : [{"var": "data.e"}, 1, 0]}, | |
{"if" : [{"var": "data.f"}, 1, 0]}, | |
], | |
{"+":[{"var":"current"}, {"var":"accumulator"}]}, | |
0 | |
]}, 3 | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment