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

com.auritylab.graphql.kotlin.toolkit.spring.annotation.GQLDirective.kt Maven / Gradle / Ivy

package com.auritylab.graphql.kotlin.toolkit.spring.annotation

import graphql.schema.idl.SchemaDirectiveWiring
import org.springframework.stereotype.Component

/**
 * Describes a annotation which shall only be used on [SchemaDirectiveWiring].
 */
@Component
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME)
annotation class GQLDirective(
    /**
     * The name of the directive.
     */
    val directive: String
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy