mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 04:51:32 +08:00
2e013c33ac
- Email and password can be used to create a new local profile - Email can be changed with accounts that already have a local profile
12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
const typeDefs = require('./server/typeDefs');
|
|
const resolvers = require('./server/resolvers');
|
|
const mutators = require('./server/mutators');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
translations: path.join(__dirname, 'server', 'translations.yml'),
|
|
typeDefs,
|
|
mutators,
|
|
resolvers,
|
|
};
|