Hello, I am just getting started and have a question.
I am looking to use Dgraph for asset management. Most of the data would be consistently typed, but some would not, because I support each user setting custom annotations.
This map can vary user to user, or even within the same user:
// User 1 annotates items this way
{
"value": 5
}
// User 2 uses it differently
{
"value": "different type",
"company name": {
"external id": 3,
"purchased by": "Sam"
}
}
Right now, we handle this using MySQL’s JSON type. It is important that I can efficiently query on this untyped data. How would I support this with Dgraph?
Thank you for your time.