Method findDeals — find deals for a specific entity by filtering with entity id Description Minimum number of arguments for this method is two. The first argument is the entity name and the second is the entity id. Structure of the method: findDeals('Entity Name', 'Entity Id') Parameters Entity Name — The entity name like lead […]
Read More
Method findMany — finds records on a specific entity by filtering with a Field Alias Description Minimum number of arguments for this method is three. The first argument is the entity name and the other two are Field Alias – Field Values pair that will filter the result. Structure of the method: findMany('Entity Name', 'Field […]
Read More
Method findOne — finds a record on a specific entity by searching with field value. Description Minimum number of arguments for this method is three. The first argument is the entity name and the other two are Field Alias – Field Values pair that will filter the result. The Field Alias can be a unique […]
Read More
Method round — Rounds a value to a specified precision that is the number of digits after the decimal point. precision can also be negative or zero Description Minimum number of arguments for this method is three. Structure of the method: round(value, precision, mode) Parameters value — The value to be rounded precision — number […]
Read More
Method divide — divides two numbers and returns the result. Description Minimum number of arguments for this method is two. Structure of the method: divide(a, b) Parameters a — This is the first parameter and should be a number b — This is the second parameter and should be a number. If it is 0, […]
Read More
Method multiply — multiplies numbers and returns the result. Description Multiplication is the process of finding the number or quantity (product) obtained by repeated additions of a specified number or quantity (multiplicand) a specified number of times. Minimum number of arguments for this method is one. Structure of the method: multiply(number, number, number, number......) Parameters number […]
Read More
Method subtract — subtract two numbers and returns the result. Description Subtraction is an arithmetic operation that represents the operation of removing objects from a collection. Minimum number of arguments for this method is two. Subtracts the second parameter value from the first parameter value. Structure of the method: subtract(a,b) Parameters a — First parameter of […]
Read More
Method add — Calculate the sum of a set of numbers and returns the result. Description Method add performs the sum of all numbers passed as arguments. The minimum number of arguments is one. For instance {{add(5)}} would output 5. Method add returns the sum of set of numbers; Structure of the method: add(number, number, […]
Read More
Method date – Format a date and returns a format that you are accustomed or want to use. Description Minimum number of arguments for this method is one, the date. You can enter a date Field Alias if you want to manipulate date from a field or a function or a string. You can also […]
Read More
Method findCount — count records on a specific entity returns a total number as a result. Description Minimum number of arguments for this method is three. The first argument is the entity name and the other two are Field Alias – Field Values pair that will filter the result. If you will add more arguments, […]
Read More