Skip to content

in_query doesn't consider limit of subquery. #119

Open
@crayment

Description

@crayment

The following will ignore the 1000 limit on the post_query:

comments = Parse::Query.new("Comment").tap do |comments_query|
  comments_query.in_query("post", Parse::Query.new("Post").tap do |posts_query|
    posts_query.eq('category', 'ruby')
    posts_query.limit = 1000
  end)
end.get

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions