Catch the highlights of GraphQLConf 2023! Click for recordings. Or check out our recap blog post.
Docs
API Reference
Classes
MockList

graphql-tools-monorepo / mock/src / MockList

Class: MockList

mock/src.MockList

This is an object you can return from your mock resolvers which calls the provided mockFunction once for each list item.

Table of contents

Constructors

Methods

Constructors

constructor

new MockList(length, mockFunction?): MockList

Parameters

NameTypeDescription
lengthnumber | number[]Either the exact length of items to return or an inclusive range of possible lengths.
mockFunction?() => unknownThe function to call for each item in the list to resolve it. It can return another MockList or a value.

Returns

MockList

Defined in

packages/mock/src/MockList.ts:31

Methods

mock

mock(): unknown[]

Returns

unknown[]

Defined in

packages/mock/src/MockList.ts:44