-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Should there be support for recursive includes? #14
Comments
I'm up for supporting this if/when it gets into the spec. Note that in your case, you can always pre-compute the depth of the tree and build an adequate include directive. |
I actually ended up doing this monkeypatch: # To support recursive include directives
# e.g.: 'children[*]'
module ActiveModelSerializers
module Adapter
class JsonApi
def process_relationships(serializer, include_slice)
if (key = include_slice.to_hash.keys.first.to_s).end_with?('[*]')
rel = key.remove('[*]')
new_rel = "#{rel}.#{rel}[*]"
include_slice = JSONAPI::IncludeDirective.new(
new_rel,
allow_wildcard: true
)
end
serializer.associations(include_slice).each do |association|
process_relationship(association.serializer, include_slice[association.key])
end
end
end
end
end |
What is the syntax to get this to work with rails?
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
something like: json-api/json-api#940
basically, if you have a tree structure, where your relationships are parent/children, you can never get all the children.
The text was updated successfully, but these errors were encountered: