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

graphql.kickstart.execution.GraphQLSingleQueryResult Maven / Gradle / Ivy

There is a newer version: 16.0.0
Show newest version
package graphql.kickstart.execution;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

@RequiredArgsConstructor
class GraphQLSingleQueryResult implements GraphQLQueryResult {

  @Getter
  private final DecoratedExecutionResult result;

  @Override
  public boolean isBatched() {
    return false;
  }

  @Override
  public boolean isAsynchronous() {
    return result.isAsynchronous();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy