Interface GraphQLErrorLocation

All Known Implementing Classes:
GraphQLErrorLocationImpl

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

     GraphQLErrorLocation graphQLErrorLocation = GraphQLErrorLocation.builder()
             .line(1)
             .column(1)
             .build()