Filtering with FQL
Fortress Query Language (FQL) is a structured syntax for finding the resources you need throughout the API
How to use it
This document describes the available operators for filtering, and provides examples for each.
Be Sure to Encode Your URI!: While the documentation ignores URI encoding for clarity purposes, you should always encode them according to RFC3986
Example of what NOT to do:
Instead, use:
Comparison Operators
Logical and Special Operators
Special Values
Examples
Basic Equality
Range Queries
Wildcard Searches
Regular Expressions
Array Field Queries
The hasAny operator allows you to check if an array field contains any of the specified values:
This is particularly useful for fields that store multiple values, such as property assignments or tags.
Logical Combinations
Null and Existence Checks
Complex Queries
For more advanced usage, refer to the code or ask for help!

