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

io.github.graphglue.model.ExtensionField.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

There is a newer version: 7.0.5
Show newest version
package io.github.graphglue.model

import io.github.graphglue.definition.ExtensionFieldDefinition
import java.lang.annotation.Inherited

/**
 * Annotation to define an additional field for a specific [Node] (and all subclasses)
 * The field is implemented by a bean with the defined name of type [ExtensionFieldDefinition]
 *
 * @param beanName the name of the bean defining the extension field, must be of type [ExtensionFieldDefinition]
 */
@Repeatable
@Target(AnnotationTarget.CLASS)
@MustBeDocumented
@Inherited
@Retention(AnnotationRetention.RUNTIME)
annotation class ExtensionField(val beanName: String)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy