Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import type { GraphQLContext } from '../../';
import type { DBUser } from 'shared/types';
import { signUser } from 'shared/imgix';
export default (user: DBUser, _: any, ctx: GraphQLContext) => {
const { coverPhoto } = signUser(user);
return coverPhoto;
};