Website logo
Navigate through spaces
ChartHop documentation
⌘K
ChartHop Help Center
Getting around in ChartHop
ChartHop for Employees
Implementing ChartHop
ChartHop for Administrators
Carrot reference
ChartHop for Developers
Partners
Release notes
Resources
Docs powered by Archbee
Website logo
Carrot reference
...
Elements of Carrot expressions
Keywords

: (match)

Returns true where the value of a given field and a given expression partially match.

Syntax

expression:match

  • Single-word Strings do not require quotations.
  • Multi-word Strings require quotations: field:"multi-word string".

Sample usage

department:engineering returns all records where department contains the string engineering.

department:eng returns all records where department contains the string `eng`.

department:engineering,sales,"customer success" returns all records where department matches any of engineering, sales, customer success.

department:* returns all records where department has any value.

department: returns all records where department has no value.

Supported data types

  • Anything after the : must be a `String`. To compare two fields to each other, or to perform an exact comparison, use the = (equals) operator.

See also

  • = (equals)
  • != (not-equals)
  • ! (not)



Updated 04 Oct 2023
Did this page help you?
PREVIOUS
Keywords
NEXT
&& (and)
Docs powered by Archbee
TABLE OF CONTENTS
Syntax
Sample usage
Supported data types
See also
Docs powered by Archbee