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
If a seqable value is passed as a :db/ident value, then this is currently deconstructed into a linked list. Skip this operation for the :db/ident property only.
The text was updated successfully, but these errors were encountered:
This happens in zuko.entity.writer/property-vals. This function is called for every attribute/value pair, and generates the following:
If the value is a set, then that means that the attribute is reused for multiple values. For each value in the set, the following steps will occur for each attribute/value. (The implementor can ignore this).
If the value is a simple scalar, then the value will be that scalar.
If the value represent a structure, then allocated a node to represent the structure, and create a sequence of triples that use that node to represent the structure. The value will now be this node.
Cons the above sequence a single triple of the form [entity-idattributevalue]
Steps 2 and 3 occur are performed by the function value-triples. The return value from this function is nested via an if-let due to defensive programming (I think an interface changed at some point), but in fact the value-triples function can never return nil. The if-let should probably be updated to a simple let.
If a seqable value is passed as a
:db/ident
value, then this is currently deconstructed into a linked list. Skip this operation for the:db/ident
property only.The text was updated successfully, but these errors were encountered: