We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
To Reproduce Query a content type/asset In the query, enter the entry's uid/asset's uid
Notice: The result is empty.
Query
Stack.contentType('blog') .entry({uid}) // OR Stack.asset({uid})
Expected behavior The query should return an object, if it exists
Workarounds Use raw .query() for list-entries OR .entry()/.asset() without on singleton-content type
.query()
.entry()/.asset()
// example 1: On multiple content type Stack.contentType('blog') .entries() .query({uid: {uid}}) // OR Stack.assets() .query({uid: {uid}})
// example 2: On singleton content type Stack.contentType('blog') .entry() // OR Stack.asset()
Regards, Ramanathan K
The text was updated successfully, but these errors were encountered:
#1, #2 and #3 issues bug fixes
2ffd68c
A quick update
.schema(uid)
Sorry, something went wrong.
Closing this. The has been fixed in hotfix/1.0.2
ninadhatkar
iyerrama29
No branches or pull requests
Describe the bug
To Reproduce
Query a content type/asset
In the query, enter the entry's uid/asset's uid
Notice: The result is empty.
Query
Expected behavior
The query should return an object, if it exists
Workarounds
Use raw
.query()
for list-entries OR.entry()/.asset()
without on singleton-content typeRegards,
Ramanathan K
The text was updated successfully, but these errors were encountered: