Parse named view blocks. Resolve include_view / include_views by compositing fields. Apply exclude / excludes. Default to the :default view when no view option is given. Use the view: option forwarded by the tag parser from #288 to select a specific view.
view :extended do
include_view :normal
field :address
exclude :last_name
end
# @response UserBlueprint(view: :extended)
# @response UserBlueprint <- uses :default view
Parse named view blocks. Resolve
include_view/include_viewsby compositing fields. Applyexclude/excludes. Default to the:defaultview when no view option is given. Use theview:option forwarded by the tag parser from #288 to select a specific view.