data class NodeQueryResult<T : Node>(val options: NodeQueryOptions, val nodes: List<T>, val totalCount: Int?)

Result of a NodeQuery

Parameters

options

options of the query

nodes

the fetched nodes

totalCount

if fetched, the total amount of nodes before pagination defined in options

Constructors

Link copied to clipboard
constructor(options: NodeQueryOptions, nodes: List<T>, totalCount: Int?)

Properties

Link copied to clipboard
val nodes: List<T>
Link copied to clipboard
Link copied to clipboard