Skip to content

select() with nested keys issue #3185

Closed
@flovilmart

Description

@flovilmart

When using the select() method with nested keys (i.e.: key1.key2) key1 needs to be included automatically.

ex:

let query = new Parse.Query("MyObject");
query.select("key.key2");
// does not work
let query = new Parse.Query("MyObject");
query.include("key");
query.select("key.key2");
// works!

Metadata

Metadata

Assignees

No one assigned

    Labels

    type:bugImpaired feature or lacking behavior that is likely assumed

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions