Using /entity/search/ and /entity/{label}/resolve in the DDS instance of Data Fusion, I get conflicting results if I search for the string 'Johnson & Johnson'.
resolve produces 0 results, however search finds multiple results.
In both case, the string is escaped as 'Johnson%20%26%20Johnson'
GET /entity/{label}/resolve
assumes exact match, hence no results for Johnson%20%26%20Johnson as no single entity matches this label exactly. On the other hand
GET /api/entity/Johnson%20Johnson/resolve
would return
{ "Johnson Johnson": "http://feed.thomsonreuters.com/1-34413161824" }
as expected.