Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import type { GraphQLContext } from '../../';
type GetCommunityMemberArgs = {
userId: string,
communityId: string,
};
export default (
_: any,
args: GetCommunityMemberArgs,
{ loaders }: GraphQLContext
) => loaders.userPermissionsInCommunity.load([args.userId, args.communityId]);