All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.graphglue.data.execution.NodeQueryResult.kt Maven / Gradle / Ivy

Go to download

A library to develop annotation-based code-first GraphQL servers using GraphQL Kotlin, Spring Boot and Neo4j - excluding Spring GraphQL server dependencies

The newest version!
package io.github.graphglue.data.execution

import io.github.graphglue.model.Node

/**
 * Result of a [NodeQuery]
 *
 * @param options options of the query
 * @param nodes the fetched nodes
 * @param totalCount if fetched, the total amount of nodes before pagination defined in `options`
 */
data class NodeQueryResult(val options: NodeQueryOptions, val nodes: List, val totalCount: Int?)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy