Skip to content
Snippets Groups Projects
Select Git revision
  • 72260704af6c29267b71c9a5738869603bfb8103
  • main default protected
2 results

PATCHES.md

Blame
  • PATCHES.md 2.01 KiB

    Patching System

    Conditions

    and - proceeds only if all conditions within return true.

    Arguments:

    • conditions - array of conditions to evaluate

    or - proceeds if any conditions within return true.

    Arguments:

    • conditions - array of conditions to evaluate

    not - proceeds if the condition within is not true.

    Arguments:

    • condition - condition to evaluate

    field - checks a field for a value.

    Arguments:

    • field - the name of a field in the lesson data
    • value - the value to compare
    • operator - the operator to use to compare - one of the following:
      • equals
      • contains
      • startswith
      • endswith
      • > greater than
      • < less than
      • >= greater then/equal to
      • <= less than/equal to

    big_query - finds a certain number of matches across the entire original lesson table

    • conditions - array of the conditions to match (uses AND matching)
    • matches - number of matches to count as a success
    • operator - operator to use on the matches value - one of the following
      • equals (any data type)
      • > greater than
      • < less than
      • >= greater then/equal to
      • <= less than/equal to