Annotation LinkedSpec

  • All Implemented Interfaces:

    @Target(allowedTargets = {AnnotationTarget.ANNOTATION_CLASS, AnnotationTarget.CLASS}) 
    public @interface LinkedSpec
    
                        

    Meta annotation used to indicate that given directive/type is associated with imported @link specification.

    Example usage:

    @LinkedSpec(FEDERATION_SPEC)
    @Repeatable
    @GraphQLDirective(
        name = KEY_DIRECTIVE_NAME,
        description = KEY_DIRECTIVE_DESCRIPTION,
        locations = [DirectiveLocation.OBJECT, DirectiveLocation.INTERFACE]
    )
    annotation class KeyDirective(val fields: FieldSet, val resolvable: Boolean = true)
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private final String value
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail