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

graphql.util.TraverserResult Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.util;

import graphql.Internal;

@Internal
public class TraverserResult {

    private final Object result;


    public TraverserResult(Object result) {
        this.result = result;
    }


    public Object getResult() {
        return result;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy