PCA
PCA

Reputation: 1707

where to Storing a managed object in custom app hosted in cumulocity

Where to store the managed object for the custom angular 6 App which is hosted inside the cumulocity

Thanks BA

Upvotes: 0

Views: 52

Answers (1)

TyrManuZ
TyrManuZ

Reputation: 2049

If you need to store metadata for your applications the inventory is the right place. A good approach is to give your object either a unique type for some unique flag.

{
  "type": "myUniqueType",
  "myUniqueFlag": {}
}

That way you can easily query it again with either type=myUniqueType or fragmentType=myUniqueFlag

Upvotes: 1

Related Questions