javascript - Parse Server querying subobject with containedIn -


does parse server support constraint containedin subobject?

i have try this:

const chatquery = new parse.query('chat') .containedin('target.group', [1,2,3])

but show error:

{ "code": 141, "error": { "code": 1, "message": { "name": "error", "length": 112, "severity": "error", "code": "42703", "position": "71", "file": "parse_relation.c", "line": "3183", "routine": "errormissingcolumn" } } }

and code below doesn't throw error although not purpose:

const chatquery = new parse.query('chat') .equalto('target.group', 1)

i don't know if didn't support or code wrong. have open gh issue (see https://github.com/parse-community/parse-server/issues/4099) still no respond.

i use parse server (2.5.3) postgresql.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -