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

graphql.nadel.engine.execution.transformation.FieldMetadata Maven / Gradle / Ivy

Go to download

Nadel is a Java library that combines multiple GrahpQL services together into one API.

The newest version!
package graphql.nadel.engine.execution.transformation;

import graphql.Internal;

@Internal
public class FieldMetadata {
    private final String transformationId;
    private final boolean rootOfTransformation;

    public FieldMetadata(String transformationId, boolean rootOfTransformation) {
        this.transformationId = transformationId;
        this.rootOfTransformation = rootOfTransformation;
    }

    public String getTransformationId() {
        return transformationId;
    }

    public boolean isRootOfTransformation() {
        return rootOfTransformation;
    }


    @Override
    public String toString() {
        return "FieldMetadata{" +
                "transformationId='" + transformationId + '\'' +
                ", rootOfTransformation=" + rootOfTransformation +
                '}';
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy