Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
258 Bytes
// @flow
import type { GraphQLContext } from '../../';
import type { DBUser } from 'shared/types';
export default ({ id }: DBUser, _: any, { loaders }: GraphQLContext) => {
return loaders.userThreadCount.load(id).then(data => (data ? data.count : 0));
};