Hmmm, I’ve updated to version 4.4.0 and I’m still getting this error in my console:
Uncaught (in promise) Invalid query, please check the syntax.
The error is coming from line 12 of vendor.js
which is vuex v3.6.2
- however I suspect the bug isn’t in Vue itself but in whatever is using / calling it. From the stack trace that appears to be initAuth
in web-runtime.js
.
The only other thing in my Console are these:
UserManager.getUser: user loaded
web-runtime-03539e51.js:1 New User Loaded. access_token: xxxRemovedxxx, refresh_token: undefined
vendor-fee82cbd.js:57 UserManager.signinRedirectCallback: no sub
Is it correct that the refresh_token
is undefined there?
Edit
Within initAuth
the lines causing the issue for me are these (2294/2295):
const s = await i.users.getUserGroups(n.id)
, r = await i.users.getUser(n.id);
It is at that point that I get this in my console: Uncaught (in promise) Invalid query, please check the syntax.