Hello everyone, First I want to thank the maintain...
# community-help
m
Hello everyone, First I want to thank the maintainers for this Great Project! I like how easy and powerful typesense is, would like to ask if it is possible to store and faced different products variations like this example
Copy code
[
    {
        "name": "some tv",
        "brand": "some tv brand",
        "category": "televisions",
        "variations": {
            "size" : 55,
            "type" : "LED",
            "resolution": "1920x1080"
        }
    },
    {
        "name": "some phone",
        "brand": "some phone brand",
        "category": "smartphones",
        "variations": {
            "memory" : "8 GB",
            "battery" : "5000mah",
            "color": "red"
        }
    },
    {
        "name": "some keyboard",
        "brand": "some keyboard brand",
        "category": "keyboards",
        "variations": {
            "connection" : "USB",
            "type" : "gaming",
            "features": "backlit"
        }
    }


]