io.github.graphglue.model.Direction.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphglue-core Show documentation
Show all versions of graphglue-core Show documentation
A library to develop annotation-based code-first GraphQL servers using GraphQL Kotlin, Spring Boot and Neo4j - excluding Spring GraphQL server dependencies
package io.github.graphglue.model
/**
* Direction of a [NodeRelationship]
*/
enum class Direction {
/**
* Outgoing relation
*/
INCOMING,
/**
* Ingoing relation
*/
OUTGOING
}