File size: 304 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
// @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;
};
|