Wolfgang Huß af5e255aad Fix several problems with admins setting of donations info
- Use 'toString' to care for setting the values of the donation progress bar.
2021-06-15 13:55:08 +02:00

28 lines
517 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',
],
},
mutation: false,
},
})