cormo-graphql
Advanced tools
Comparing version 0.9.0 to 0.9.1
@@ -193,3 +193,6 @@ "use strict"; | ||
for (const [column, property] of Object.entries(model_class._schema)) { | ||
if (column === 'id' || property.type_class === cormo.types.String || property.type_class === cormo.types.Integer) { | ||
if (column === 'id' || | ||
property.type_class === cormo.types.String || | ||
property.type_class === cormo.types.Integer || | ||
property.type_class === cormo.types.BigInteger) { | ||
values[column.toUpperCase() + '_ASC'] = { | ||
@@ -196,0 +199,0 @@ value: column, |
{ | ||
"name": "cormo-graphql", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "GraphQL support for CORMO", | ||
@@ -46,3 +46,3 @@ "main": "./lib", | ||
}, | ||
"gitHead": "28294e6f6422375ff1986f723257033ba28050bf" | ||
"gitHead": "664a335c185532125ce799446a8caf8c956f0092" | ||
} |
24604
585