SqueakQL functions
has_label
has_label() checks a case-insensitive label name:
has_label('api')AND status <> 'done'The function accepts exactly one non-empty label name of at most 100 characters. It works as a boolean expression and can be negated:
NOT has_label('needs-review')SqueakQL has no arbitrary function calls. A name that is not in this registry,
such as current_sprint() or pg_sleep(), is rejected before compilation.
