PantherFlow Quick Reference
Overview of PantherFlow functionality
Last updated
Was this helpful?
Overview of PantherFlow functionality
Last updated
Was this helpful?
PantherFlow queries are made up of one or more statements. There are two types of statements:
: Identifies a data source and can include operators separated by pipes
: Assigns a tabular expression statement to a variable
<from>
Get data from table
table1
1
, -1
1.0
, -1.0
'foo'
, "foo"
true
, false
time.parse_timestamp('2023-06-01 13:14:15.00Z')
, time.parse_timestamp('2023-06-01')
15s
, 2d
, time.parse_timespan('1d')
{key1: value1, key2: value2}
, object('key1', 'foo', 'key2', 1)
[A, B, C]
, array('apple', 'orange')
tableName
columnName
null
Write a comment with two slashes:
: array[X]
: object['X']
, object.X
: ==
, !=
: and
, or
, not
: <
, <=
, >
, >=
, +
, -
, *
, /
, %
: in
, not in
: between
, not between