Who can access ?
Roles | Access |
👑 Admins | Full access |
🛠️ Editors | No access |
👀 Viewers | No access |
🔒 Restricted Viewers | No access |
Where to use Feedback Query Language (FQL) ?
FQL allows you to create complexe filters on your feedback data. It can be used in :
What is the easiest way to build an FQL filter ?
Create the filter in the platform
2. Copy paste the url of you browser.
3. Decode the URL in any decoder. For example here.
You will obtain something like :
https://bx.feedier.staging.alkalab.com/live-feed/feedback?fql=[[{"Form":{"$in":[453],"$type":"and"}}],[{"Attribute":{"$in":["United States"],"name":"country","$type":"and"}}],[{"Nps":{"$in":["promoter"],"$type":"and"}}]]&page=1
You will find the FQL in it 🎉
What are the available operators ?
A list of operators is available and can be used for perform a query on differents selectors.
Name | Operator | Accepted values | Description |
Type | $type |
| The OR comparaison is for the entire query. |
Equal | $eq |
| Strict comparaison using = operator. |
Not Equal | $ne |
| Strict comparaison using != operator. |
Greater Than | $gt |
| Strict comparaison using > operator. |
Lower Than | $lt |
| Strict comparaison using < operator. |
Greater Than or Equal | $gte |
| Strict comparaison using >= operator. |
Lower Than or Equal | $lte |
| Strict comparaison using <= operator. |
Contains | $like |
| Containing one the given values. Examples:
|
Does not contain | $nlike |
| Doesn’t contain the given values. |
In | $in |
| Strict contain one the given values. |
Not In | $nin |
| Strict doesn’t contain the given values. |
Between | $btw |
| Ranges between the Start Date from the beginning of the day to the End Date end of the day |
What are the available operators ?
Name | Example | Note |
Attribute | [ |
|
Time period filter is applied on created_at field | [ | You can use : date_last_day to target feedbacks from yesterday. |
Form filter is done on carrier_id | [ |
|
Feedback Id | [ |
|
Satisfaction Ratio | [ |
|
Question Answer | [ |
|
Team | [ |
|
Completed | [ |
|
Owner | [ |
|
Status | [ |
|
Completion time | [ |
|
Topic | [ | Feedback with at least 1 question answer with this topic |
Source | [ |
|
NPS | [ |
|


