function split(original, splitPattern)

split() returns the sequence of strings which are delimited by split patterns.

Arguments:
original: An expression that returns a string
splitPattern: The string to split the original string with

Example Query:
    RETURN split("one,two", ",")