io.github.graphglue.model.OrderProperty.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
The newest version!
package io.github.graphglue.model
/**
* Annotation to mark properties as order properties, meaning that nodes of the containing class can be ordered
* by this property. Necessary that the property is a scalar property and of an in Neo4j orderable type
* (e.g. String, Int, Double, ...)
*/
@MustBeDocumented
@Target(AnnotationTarget.PROPERTY)
annotation class OrderProperty