Interface GraphQLAnonymousIdAlreadyInUseError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLAnonymousIdAlreadyInUseError extends GraphQLErrorObject

Returned when the anonymous ID is being used by another resource.

The client application should choose another anonymous ID or retrieve an automatically generated one.


Example to create an instance using the builder pattern

     GraphQLAnonymousIdAlreadyInUseError graphQLAnonymousIdAlreadyInUseError = GraphQLAnonymousIdAlreadyInUseError.builder()
             .build()