@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
@Deprecated
public @interface JsonApiRemoveRelations
Method annotated with this annotation will be used to remove relationship resources from a particular document. The
method must be defined in a class annotated with JsonApiRelationshipRepository
.
The requirements for the method parameters are as follows:
Iterable
of relationships to be removedThe method's return value should be void.