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

com.graphql_java_generator.annotation.GraphQLIgnore Maven / Gradle / Ivy

There is a newer version: 0.11.1
Show newest version
/**
 * 
 */
package com.graphql_java_generator.annotation;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * This annotation marks the type, field or method as a non GraphQL one. Typically, it marks stuff that doesn't come
 * from the GraphQL schema, and is internal to the generated code.
 * 
 * @author etienne-sf
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ TYPE, FIELD, METHOD })
public @interface GraphQLIgnore {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy