ServiceConfig
No description
type ServiceConfig {
defaultPageSize(
type: String!
field: String!
): Int
maxDisassembledModuleSize: Int
maxDisplayFieldDepth: Int
maxDisplayOutputSize: Int
maxMoveValueBound: Int
maxMoveValueDepth: Int
maxMultiGetSize: Int
maxOutputNodes: Int
maxPageSize(
type: String!
field: String!
): Int
maxQueryDepth: Int
maxQueryNodes: Int
maxQueryPayloadSize: Int
maxTransactionPayloadSize: Int
maxTypeArgumentDepth: Int
maxTypeArgumentWidth: Int
maxTypeNodes: Int
mutationTimeoutMs: Int
queryTimeoutMs: Int
}
Fields
ServiceConfig.defaultPageSize
● Int
scalar
Number of elements a paginated connection will return if a page size is not supplied.
Accepts type
and field
arguments which identify the connection that is being queried. If the field in question is paginated, its default page size is returned. If it does not exist or is not paginated, null
is returned.
ServiceConfig.defaultPageSize.type
● String!
non-null scalar
ServiceConfig.defaultPageSize.field
● String!
non-null scalar
ServiceConfig.maxDisassembledModuleSize
● Int
scalar
Maximum output size of a disassembled MoveModule, in bytes.
ServiceConfig.maxDisplayFieldDepth
● Int
scalar
Maximum depth of nested field access supported in display outputs.
ServiceConfig.maxDisplayOutputSize
● Int
scalar
Maximum output size of a display output.
ServiceConfig.maxMoveValueBound
● Int
scalar
Maximum budget in bytes to spend when outputting a structured MoveValue
.