Interface GraphQLError

All Known Implementing Classes:
GraphQLErrorImpl

public interface GraphQLError
GraphQLError
Example to create an instance using the builder pattern

     GraphQLError graphQLError = GraphQLError.builder()
             .message("{message}")
             .plusLocations(locationsBuilder -> locationsBuilder)
             .extensions(extensionsBuilder -> extensionsBuilder)
             .build()