Changelog

Changelog - 3.5.0

Released on

Release notes

Removed Universe CES Stats route

This route has been removed as it was not used by any client. And the performances were not good enough to justify it's maintenance.
For future reference, it was equivalent to the Get Entities CES Stats route but with a limited date range of 7 days and limited aggregations functions.

Added a new fuzzy string operator

This operator is currently available on the following routes:

It is used to filter results by a string field fuzzy matching the given value. For example, if you are looking for a company named Apple and search for fuzzy:aple, the result will contain Apple.

On the Get Universe Entities route and the Get Entities route:

  • Added a total field in the response, indicating the total number of entities matched by the request.
  • Added the page parameter to directly access the n-th page (see Pagination).
  • Added the order parameter to sort results by name or _score (_score being an internal relevance metric)
    • By default it returns results ordered by _score:desc then by name:asc (same behavior as before).

On the Get CES Data for one entity route:

  • Added a total field in the response, indicating the total number of entities matched by the request.
  • Added the page parameter to directly access the n-th page (see Pagination).

On the Get CES Data for all entities of one universe route:

  • Added a total field in the response, indicating the total number of entities matched by the request.
  • Added the page parameter to directly access the n-th page (see Pagination).
  • Added the order parameter to sort results by ces_score or date
    • By default it returns results ordered by date:asc then by ces_score:desc (same behavior as before).