mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
29 lines
538 B
JavaScript
29 lines
538 B
JavaScript
import { makeAugmentedSchema } from 'neo4j-graphql-js'
|
|
import typeDefs from './types'
|
|
import resolvers from './resolvers'
|
|
|
|
export default makeAugmentedSchema({
|
|
typeDefs,
|
|
resolvers,
|
|
config: {
|
|
query: {
|
|
exclude: [
|
|
'Badge',
|
|
'Embed',
|
|
'EmailAddress',
|
|
'Notfication',
|
|
'Statistics',
|
|
'LoggedInUser',
|
|
'Location',
|
|
'SocialMedia',
|
|
'NOTIFIED',
|
|
'FILED',
|
|
'REVIEWED',
|
|
'Report',
|
|
'Donations',
|
|
],
|
|
},
|
|
mutation: false,
|
|
},
|
|
})
|