Skip to content

chasovskiy/flatten-properties-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Property Flattener Plugin

Flatten nested properties in PostHog events to easily access them in filters.

Example

For example, if you're an online retailer, and have purchase events with the following property structure:

{
    "event": "purchase",
    "properties": {
        "product": {
            "name": "AZ12 shoes",
            "type": "footwear",
            "size": {
                "number": 12,
                "gender": "M"
            }
        }
    }
}

This plugin will keep the nested properties unchanged, but also add any nested properties at the first depth, like so:

{
    "event": "purchase",
    "properties": {
        "product": {
            "name": "AZ12 shoes",
            "type": "footwear",
            "size": {
                "number": 12,
                "gender": "M"
            }
        },
        "product__name": "AZ12 shoes",
        "product__type": "footwear",
        "product__size__number": 12,
        "product__size__gender": "M"
    }
}

As such, you can now filter your purchase events based on product__size__number for example.

The default separator for nested properties is two subsequent underscores (__), but you can also change this to:

  • .
  • >
  • /

When picking your separator, make sure it will not clash with your property naming patterns.

About

Flatten event properties to easily access them in filters.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%