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

GraphQL & Relay for MySQL & Postgres via Sequelize

Results 2 graphql-sequelize issues
Sort by recently updated
recently updated
newest added

Example query where only CREATED_AT_DESC and ID_DESC (by default) are used: ``` users(orderBy: [CREATED_AT_DESC, TOTAL_DEPOSIT_DESC]) { ``` with orderBys defined like so: ``` UserOrderBy: { ID_DESC: ['id', 'DESC'], CREATED_AT_DESC: ['createdAt',...

Hi everyone, I would like to know how to correctly use `useMaster` with graphql-sequelize. I'm trying to force the query to go to the master database using this code: ```javascript...

wontfix