You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all relations are showed in the same way - a line going from the containing element to the contained element, with a black diamond on the contained end. For example, the relations in these three examples look identical, even though there is a difference in the cardinality:
;;Example 1: Zero to many
(s/defschema State
{:name s/Str})
(s/defschema Country
{:name s/Str
:states [State]})
;;Example 2: Exactly one
(s/defschema State
{:name s/Str})
(s/defschema Citizen
{:first-name s/Str
:last-name s/Str
:home-state State})
Currently, all relations are showed in the same way - a line going from the containing element to the contained element, with a black diamond on the contained end. For example, the relations in these three examples look identical, even though there is a difference in the cardinality:
The difference between these relations could be shown as:
*
on the end of the line going to the contained element1
on the end of the line going to the contained element0..1
on the end of the line going to the contained elementThe text was updated successfully, but these errors were encountered: