Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
projects in projectsWhereNumberProperty( maximumNumberOfTryOuts, ">", 3 )


This example returns a list of projects where the Number of tryouts 'maximumNumberOfTryOuts' is bigger than 3.


Code Block
languagebash
linenumberstrue
projects in projectsWhereNumberProperty( numberOfLevels, "=", 5 )


This example returns a list of projects where the number of levels 'numberOfLevels' is equal to 5.



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
project_property

Status
subtletrue
titletext

The name of a project property containing a numeric value.
operator

Status
subtletrue
titledata type

Comparison operator to be applied.

Expand
titlemore info...
  • "=" strict equal operator.
  • "!="  strict not an equal operator.
  • "~"  approximate equal operator (case insensitive and trims blanks).
  • "!~" approximate not equal operator (case insensitive and trims blanks).
  • "matches" The value of project property matches a regular expression.
  • "doesn't match" The value of project property doesn't match a regular expression.
  • ">, >=, <, <=" lexicographical order operators.


numeric_literal

Status
subtletrue
titlenumber

The number to be compared with the value stored in the project property.


...