com.merapar.graphql.executor.GraphQlExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-graphql Show documentation
Show all versions of spring-boot-starter-graphql Show documentation
This is a Spring boot starter project for the GraphQL Java project.
The newest version!
package com.merapar.graphql.executor;
import java.util.Map;
public interface GraphQlExecutor {
Object executeRequest(Map requestBody);
}