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

com.networknt.graphql.common.GraphqlUtil Maven / Gradle / Ivy

package com.networknt.graphql.common;

import com.networknt.config.Config;
import io.undertow.util.AttachmentKey;

/**
 * Created by steve on 25/03/17.
 */
public class GraphqlUtil {
    public static final String CONFIG_NAME = "graphql";

    public static final AttachmentKey GRAPHQL_PARAMS = AttachmentKey.create(Object.class);

    public static GraphqlConfig config = (GraphqlConfig) Config.getInstance().getJsonObjectConfig(CONFIG_NAME, GraphqlConfig.class);

}