File size: 800 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
// @flow
import channel from './rootChannel';
import memberCount from './memberCount';
import threadConnection from './threadConnection';
import community from './community';
import channelPermissions from './channelPermissions';
import communityPermissions from './communityPermissions';
import memberConnection from './memberConnection';
import metaData from './metaData';
import moderators from './moderators';
import owners from './owners';
import isArchived from './isArchived';
import joinSettings from './joinSettings';
module.exports = {
Query: {
channel,
},
Channel: {
memberCount,
threadConnection,
community,
channelPermissions,
communityPermissions,
memberConnection,
metaData,
moderators,
owners,
isArchived,
joinSettings,
},
};
|