You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🚀 You can help us to fix this issue faster by opening a pull request with a failing test. See our Contribution Guide for how to make a pull request, or read our New Contributor's Guide if this is your first time contributing.
New Issue Checklist
Issue Description
await Parse.User.me(sessionToken, { include: "books" })
does not work.The "include" key is actually ignored,
books
remains unfetched.Steps to reproduce
Create a
Parse.User
with a column of type Pointer array, let's call it "books", add books.Call
const me = await Parse.User.me(sessionToken, { include: "books" })
Actual Outcome
me.get("books")
returns an array of unfetchedBook
.Expected Outcome
Would expect that book data is available.
Environment
Server
5.4.0
macOS
local
Database
mongodb
5.0.13
local
Client
3.4.4
Fix idea:
Parse-SDK-JS/src/ParseUser.js
Line 700 in ad429fc
The text was updated successfully, but these errors were encountered: