I am using using Azure Digital Twins, I would like to query the twin to only return properties that is currently relevant for me.
I can get all data for a specific twin using the API GetByID or query usign the string SELECT * FROM DIGITALTWINS Twins WHERE Twins.$dtId = 'xxx'
Each of my twins have around 50-100 properties, but most of the time I am only interested in two or three of the properties. So it feels unnecessary to use the API or Query string above that fetches all propertys.
So is there a way to specify what properties that should be returned when getting twin data from ADT?
Thanks in advance!
Have looked thru the ADT documentation withoth finding an answer to my question. Expecting to find a way to pull specific property values from a twin in ADT.