Syntax Guide for FrontQL
Operators
- Equal to:
: - Not equal to:
!: - Greater than:
> - Less than:
< - Greater than or equal to:
>: - Less than or equal to:
<: - And:
, - Or:
| - Like:
~ - Contains:
~*
Examples
id: 1id: 1, name: Johnid: 1 | id: 2id: 1, age > 18id: 1, age < 32age >: 18, age <: 32name ~ Johnname ~ John*name ~ *Johnname ~ *John*
Syntax Rules for Collection Name
- Use lowercase letters only.
- If the collection name is one word, you can use it as is.
- If the collection name is multiple words, you can use a
underscore (_)to separate them. - Example:
users,user_profiles,user_addressetc.