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

graphql.schema.diff.DiffLevel Maven / Gradle / Ivy

The newest version!
package graphql.schema.diff;

import graphql.PublicApi;

/**
 * This is the level of difference between graphql APIs
 */
@PublicApi
public enum DiffLevel {
    /**
     * A simple info object coming out of the difference engine
     */
    INFO,
    /**
     * The new API has made a breaking change
     */
    BREAKING,
    /**
     * The new API has made a dangerous (but non breaking) change
     */
    DANGEROUS
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy