package
1.3.6
Repository: https://github.com/00security/grammes.git
Documentation: pkg.go.dev

# Functions

Equal checks if this value is exactly equal to the querying value.
GreaterThan checks if this value is greater than the querying value.
GreaterThanOrEqual checks if this value is greater than or equal to the querying value.
Inside checks if this value is within the minimum and maximum querying values.
LessThan checks if this value is less than the querying value.
LessThanOrEqual checks if this value is less than or equal to the querying value.
NotEqual check if this value is NOT equal to the query value.
TextContains finds if at least one word inside the text string matches the query string.
TextContainsFuzzy finds if one word inside the text string is similar to the query string.
TextContainsPrefix finds if one word inside the text string begins with the query string.
TextContainsRegex finds if one word inside the text string matches the given regular expression.
TextFuzzy finds if the string value is similar to the given query string.
TextPrefix finds if the string value starts with the given string.
TextRegex finds if the string value matches the given regular expression in its entirety.
Within checks if this value is within the array values.
Without checks if this value is without one of the array values.

# Type aliases

Predicate is used when you're trying to find values like IDs or property values that meet within the criteria.