Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import message from './rootMessage';
import getMediaMessagesForThread from './rootGetMediaMessagesForThread';
import sender from './sender';
import author from './author';
import thread from './thread';
import reactions from './reactions';
import parent from './parent';
import content from './content';
module.exports = {
Query: {
message,
getMediaMessagesForThread,
},
Message: {
author,
sender, // deprecated
thread,
reactions,
parent,
content,
},
};