* @param pointOfView node that is looking at this relationship for the purposes of determining direction. Must be one
* of the participating nodes.
* @return relationship description.
*/
public static DetachedRelationshipDescription wildcard(Relationship relationship, Node pointOfView) {
return new DetachedRelationshipDescriptionImpl(relationship.getType(), DirectionUtils.resolveDirection(relationship, pointOfView), new WildcardPropertiesDescription(relationship));
}