Hi @weisisheng,
Can you share the code you use to:
- connect (please redact your URLs/API keys),
- insert data,
- query?
In your configuration, you have 3 vectorizers. So, when you query, you need to provide the name of the vector you are searching on, like this:
const jd = client.collections.get('JD');
const result = await myNVCollection.query.nearText('your query', {
targetVector: 'basics',
limit: 2,
})