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
{ allPerson { name image { url } } }
It returns url as null. It seems like linked items only return _id
url
null
_id
The text was updated successfully, but these errors were encountered:
Had a similar Problem. Looking through the closed issues, I sumbled across this reply It suggest to set the populate parameter:
populate
query { allCategories(populate:1) { _id, Subcategories { Name } } }
and it's working!
Sorry, something went wrong.
Also worth knowing - if you have deeper levels of nested linked collections, you can just increase the populate integer as necessary.
No branches or pull requests
It returns
url
asnull
. It seems like linked items only return_id
The text was updated successfully, but these errors were encountered: