Hey guys, I'm having some issues trying to export ...
# community-help
g
Hey guys, I'm having some issues trying to export a collection + left join Let's say that I have a source_collection and a join_collection.
join_collection
schema references
source_collection
using the
source_id
field My request is something like this in source_collection: filter_by: id:* || $join_collection(id:*) include_fields: $join_collection(*) So basically this request works fine for the multisearch endpoint, but the export just keeps running until it times out, and all the subsequent requests fails with 503 for some seconds. I suspect that this is breaking because not all documents in source_collection are referenced in join_collection. Multisearch handles this by doesn't showing the joined document, but the export just crashes.