cc.voox.graphql.annotation.ObjectField Maven / Gradle / Ivy
The newest version!
package cc.voox.graphql.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Inherited
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface ObjectField {
String value() default "";
String description() default "";
Class> type() default Void.class;
boolean id() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy