Does the new version (0.24) of Orion mean a fuzzy search (approximate search of strings) over objects?
In addition, I tried to create an object with an empty string, but although the server returns 201, the object is not created.
//url to create entity (POST)
http://some.ip:port/v2/entities
//payload:
{
"type": "Test",
"id": "Test.1",
"nombre": ""
}
//reponse
code 201
//url to list entities (GET)
http://some.ip:port/v2/entities?type=Test
//response
[]
source
share