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
| Name | Type | Description | 
|---|---|---|
| length | number|number[] | Either the exact length of items to return or an inclusive range of possible lengths. | 
| mockFunction? | () => unknown | The function to call for each item in the list to resolve it. It can return another MockList or a value. | 
Returns
Defined in
packages/mock/src/MockList.ts:31
Methods
mock
▸ mock(): unknown[]
Returns
unknown[]