graphql.nadel.engine.execution.transformation.FieldMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nadel-engine Show documentation
Show all versions of nadel-engine Show documentation
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 +
'}';
}
}