Wolfgang Huß b39d1c737b
refactor(other): consolidate Node.js versions and fix e2e workflow (#9126)
Co-authored-by: mahula <lenzmath@posteo.de>
2026-01-27 18:23:26 +01:00

35 lines
746 B
TypeScript

/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-call */
import { makeAugmentedSchema } from 'neo4j-graphql-js'
import typeDefs from '@graphql/types/index'
import resolvers from './resolvers'
export default makeAugmentedSchema({
typeDefs,
resolvers,
config: {
query: {
exclude: [
'Badge',
'Embed',
'EmailNotificationSettings',
'EmailNotificationSettingsOption',
'EmailAddress',
'Notification',
'Statistics',
'LoggedInUser',
'Location',
'SocialMedia',
'NOTIFIED',
'FILED',
'REVIEWED',
'Report',
'Group',
],
},
mutation: false,
},
})