Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import gql from 'graphql-tag';
export type CommunityInfoType = {
id: string,
createdAt: Date,
name: string,
slug: string,
description: ?string,
website: ?string,
profilePhoto: string,
coverPhoto: string,
pinnedThreadId: ?string,
watercoolerId: ?string,
isPrivate: boolean,
redirect?: Boolean,
communityPermissions: {
isMember: boolean,
isBlocked: boolean,
isOwner: boolean,
isPending: boolean,
isModerator: boolean,
},
};
export default gql`
fragment communityInfo on Community {
id
createdAt
name
slug
description
website
profilePhoto
coverPhoto
pinnedThreadId
isPrivate
watercoolerId
redirect
noindex
communityPermissions {
isMember
isBlocked
isOwner
isPending
isModerator
}
}
`;