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
I want to use filters which operate on complete object, such as:
orderSummary::Order->Text
This forces me to define an Unqote instance for the Order type, which (as per my understanding) is a Aeson.Value -> Order parsing step. Does this mean that each of the following call sites is going to parse Aeson.Value -> Order?
{{ order | orderSummary }}
{{ order | orderTotal }}
{{ order | shippingAddress }}
Is there a faster/performant way of doing this? Instead of filters, should I make these available as template-snippets that can be included via a custom resolver?
The text was updated successfully, but these errors were encountered:
I want to use filters which operate on complete object, such as:
This forces me to define an
Unqote
instance for theOrder
type, which (as per my understanding) is aAeson.Value -> Order
parsing step. Does this mean that each of the following call sites is going to parseAeson.Value -> Order
?Is there a faster/performant way of doing this? Instead of filters, should I make these available as template-snippets that can be included via a custom resolver?
The text was updated successfully, but these errors were encountered: