#community-help

Using Joins Feature in v0.26 with typesense-go

TLDR James inquired about using the joins feature in v0.26 with typesense-go. Kishore Nallan explained that it's not yet supported and suggested using curl or Python client for collection creation.

Powered by Struct AI
Sep 22, 2023 (2 months ago)
James
Photo of md5-7fdd6d3e772affdbb3f91db8cb91cc05
James
03:55 PM
I'm looking to try out the new joins feature in v0.26. Currently I load my data using typesense-go, but unfortunately the Reference field does not exist on api.CollectionSchema , and it doesn't appear there is a suitable branch supporting this feature. I'm wondering if I can just load the data without that field and then modify the schema via the dashboard, or does the reference field need to be present when the data is loaded?
Kishore Nallan
Photo of md5-4e872368b2b2668460205b409e95c2ea
Kishore Nallan
04:29 PM
We have not yet added support for the join feature in the Go client yet. So atleast for creating the collections you have to use curl or another untyped language client like Python client.
04:30
Kishore Nallan
04:30 PM
Reference needs to be present upfront as we have not implemented alter support for joins as well.
James
Photo of md5-7fdd6d3e772affdbb3f91db8cb91cc05
James
04:32 PM
Thank you. Creating the collection with curl is a simple enough temporary solution.