-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
Consider the following model definition:
Model A:
"properties": {
"initiatorId": {
"type": "any" //ID of another model
},
"sharedUserId": {
"type": "any" //ID of another model
}
}
When I apply filter to model A in explorer like
{"where" : {"initiatorId" : "123123123"}}I get the results but when I apply this filter
{"where" : {"sharedUserId" : "44553322"}}I get empty array
Even this behavior is seen in filter like
{"where" : {"and" : [ {"initiatorId" : "123123123"},{"sharedUserId" : "44553322"}]}}
I get empty array.
I tried changing data types from "any" to "string" but still it doesn't work
Please suggest me something on this.
petrgazarov