I have a structure defined like that:
concept Data
{
o Double Temp
o Double Hum
}
asset Reading identified by ReadingID
{
o String ReadingID
o String DeviceID
o Integer Time
o Data Data
}
In Composer, I can search for ReadingID without coding anything, because it is the "primary key" and this query is automatically defined.
Is there a way for querying using basic types, like a String?