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
{{ message }}
This repository has been archived by the owner on Dec 25, 2022. It is now read-only.
I've encountered some strange behaviour — I'm building my schemas and it appears that I have to choose between either my images downloading, or to have my api being brought in correctly. The two options I am presented with:
Have my data being brought in with the correct hierarchy (in my case: conferences->events->image), but the images don't get downloaded.
Have my data being brought in with a flat hierarchy (conferences, events->image) and with the images downloading.
My api looks like this:
to have the correct hierarchy I need to use this config:
BUT if I change events: [event] to events: [events] and rename the event schema also to match, the images download — though I can then no longer access the event information through the conferences in GraphQL as they appear as null. The images appear under allImages?
The text was updated successfully, but these errors were encountered:
I've encountered some strange behaviour — I'm building my schemas and it appears that I have to choose between either my images downloading, or to have my api being brought in correctly. The two options I am presented with:
My api looks like this:

to have the correct hierarchy I need to use this config:
BUT if I change
events: [event]
toevents: [events]
and rename the event schema also to match, the images download — though I can then no longer access the event information through the conferences in GraphQL as they appear asnull
. The images appear underallImages
?The text was updated successfully, but these errors were encountered: