com.graphql_java_generator.annotation.GraphQLIgnore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java library to interact with Sauce Visual
/**
*
*/
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 {
}