File size: 300 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 { coverPhoto } = signCommunity(community);
return coverPhoto;
};
|