php-crud-api
php-crud-api copied to clipboard
returning array values from postgresql
I have a postgres db with a column consisting of an array of integers. When I query them using the api it returns a literal of the array "testIntArray": "{1,2,3,4,5}" instead of the expected JSON array "testIntArray": [1,2,3,4,5] .Any thoughts on what I may be doing wrong or if it is functionality that isn't there.
That you for reporting this issue. The functionality is not there: Arrays are currently not supported. Geometry and JSON are complex types that are supported.