Interface GraphQLObjectNotFoundError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLObjectNotFoundError extends GraphQLErrorObject

Returned when the requested resource was not found.


Example to create an instance using the builder pattern

     GraphQLObjectNotFoundError graphQLObjectNotFoundError = GraphQLObjectNotFoundError.builder()
             .build()