// @flow import type { GraphQLContext } from '../../'; import type { DBCommunity } from 'shared/types'; import { signCommunity } from 'shared/imgix'; export default (community: DBCommunity, _: any, ctx: GraphQLContext) => { const { profilePhoto } = signCommunity(community); return profilePhoto; };