waterline-graphql icon indicating copy to clipboard operation
waterline-graphql copied to clipboard

GraphQL adapter for the Waterline ORM.

Results 3 waterline-graphql issues
Sort by recently updated
recently updated
newest added

I have two models : `medecin.js` `module.exports = { autoPK: false, autoCreatedAt: false, autoUpdatedAt: false, tableName:'medecin', attributes: { id:{ type:'integer', autoIncrement:true, unique:true, index:true, columnName:'id_medecin', primaryKey:true }, specialite:{ model:'specialite', columnName:'id_specialite' }...

I use this project with sailsjs and mongodb and tried to setup a basic request which works fine. Here is my User.js model: ``` module.exports = { tableName: 'users', attributes:...

These lines: https://github.com/strapi/waterline-graphql/blob/master/lib/scalars/json.js#L11-L12 The first one is accessing a object with key of it's kind: `getParser[tree.kind]`, but it seems like `getParser` is a function with no keys, can't be right?...