This function converts the a text which holds true or false to the logical value true or false. It is mainly used in connection with the function jiraExpression().


 toLogicalValue(text) #Output: Boolean



Parser expressionDescription


toLogicalValue(jiraExpression("issues.every(c=>c.name=='UI')",subtasks()))


This example is used as a logical expression and returns true if all subtasks have a component UI

To achieve this the following functions are used:


toLogicalValue("true")


This is a very basic use case for a logical expression - it returns true.



Parameters used in this function

ParameterInput (data type)Description
text

Any given text. 


(warning) If this text does not hold true or false, an error is returned!



This function returns a



Use cases and examples




Status
Tech review

Style guide



Short description

Converts a text and lists to a logical value.

Output