
graphql.kickstart.execution.GraphQLErrorQueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-kickstart Show documentation
Show all versions of graphql-java-kickstart Show documentation
relay.js-compatible GraphQL servlet
The newest version!
package graphql.kickstart.execution;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
@Getter
@RequiredArgsConstructor
class GraphQLErrorQueryResult implements GraphQLQueryResult {
private final int statusCode;
private final String message;
@Override
public boolean isBatched() {
return false;
}
@Override
public boolean isAsynchronous() {
return false;
}
@Override
public boolean isError() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy