mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
I deprecated the debug flags myself here: https://github.com/neo4j-graphql/neo4j-graphql-js/pull/288 You can now debug the queries run by `neo4j-graphql-js` by starting the backend like this: ```bash DEBUG=neo4j-graphql-js yarn run backend ```
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
import { neo4jgraphql } from 'neo4j-graphql-js'
|
|
|
|
export default {
|
|
Query: {
|
|
Badge: async (object, args, context, resolveInfo) => {
|
|
return neo4jgraphql(object, args, context, resolveInfo)
|
|
},
|
|
},
|
|
}
|