Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 577 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 577 Bytes

Issue 1287

The project is generated by LoopBack.

Test project for issue 1287 that replicates the problem outlined here: strongloop/loopback#1287

The issue is outlined in the endpoint GET /MyModels/shouldReturnNumber. The expected behaviour is that the ids used for the filter should remain numbers after being used in the find method.

Here the table:

CREATE TABLE `my_model` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` VARCHAR(50) NOT NULL,
PRIMARY KEY (`id`)
)
ENGINE=InnoDB
;