export default { Query: () => ({ keywordsByLocationId: () => new MockList(10), listingsForLocation: () => new MockList(20), duplicatesForLocation: () => new MockList(20), }), Mutation: () => ({ addKeywords: (root, args) => ({ ok: true, keywords: addKeywordsResolver(args), }), starPhotosForLocation: (root, args) => ({ modifiedPhotos: starPhotosForLocationResolver(args), }), archiveKeyword: (root, args) => ({ keyword: archiveKeyword(args), }), }), AddLocationPhotosPayload: () => ({ clientMutationId: faker.random.number(), locationPhotos: [ { name: 'Hello', url: 'https://picsum.photos/200/300', type: 'AdditionalImage', }, ], }), KeywordType: () => ({ id: faker.yrandom.number(100), keyword: faker.name.firstName(), }), };