Update notes authored by ekes's avatar ekes
......@@ -200,54 +200,54 @@ For each entity there's a predefined set of facets.
```
Events:
// operator: and
FacetPostalCode = "field_offline:field_address:postal_code"
"field_offline:field_address:postal_code"
// Always starts with an uppercase letter, e.g. Berlin
// operator: and
FacetCity = "city"
"city"
// Uppercase country code, e.g. DE for Germany
// operator: and
FacetCountry = "country"
"country"
// The date must be in the format YY YY-MM or YYYY-MM-DD
// operator: or
FacetDate = "date"
"date"
// price category, e.g. "free-121"
FacetPrice = "price"
"price"
// Topic tag, e.g. "sport", "vegan"
// operator: and
FacetTag = "tag"
"tag"
// operator: or
FacetGroup = "group"
"group"
// Spaces and slashes should be replaced by a dash, e.g. "work space/diy" =>
// "work-space-diy"
// operator: and
FacetCategory = "category"
"category"
Groups:
//operator: none
FacetOfflineMap = "offline:map"
"offline:map"
// For some reason values need to start with a lowercase here, e.g. berlin
// operator: and
FacetCity = "city"
"city"
// Uppercase country code, e.g. DE for Germany
// operator: and
FacetCountry = "country"
"country"
// operator: and
FacetSquated = "squated"
"squated"
// Group is listed by this group.
// operator: and
FacetRadarGroupListedBy = "radar_group_listed_by"
"radar_group_listed_by"
// If the group is active
// operator: or
FacetActive = "field_active"
"field_active"
// topic / tag
// operator: and
FacetTopic = "topic"
"topic"
// Spaces and slashes should be replaced by a dash, e.g. "work space/diy" =>
// "work-space-diy"
// operator: and
FacetCategory = "category"
"category"
// operator: and
FacetTitle = "title"
"title"
```
......
......