paginate Move Module Lists
Fetches paginated lists of components within a Move module.
This function allows for independent pagination of each component list (friends, structs, functions, enums) by using boolean flags to selectively include them in the query.
Return
A Result which is either:
Ok
: Containing a nullable PaginateMoveModuleListsQuery.Data object with the requested paginated lists of the module's components.Err
: Containing a SuiError object with a list of GraphQLErrors.
Parameters
The ID of the package containing the module.
The name of the module.
A flag to control whether to fetch the friends
list. Set to true
to include it in the response.
A flag to control whether to fetch the structs
list. Set to true
to include it in the response.
A flag to control whether to fetch the functions
list. Set to true
to include it in the response.
A flag to control whether to fetch the enums
list. Set to true
to include it in the response.
An optional cursor to paginate through the friends
list.
An optional cursor to paginate through the structs
list.
An optional cursor to paginate through the functions
list.
An optional cursor to paginate through the enums
list.