const suggestions = await signa.suggest.crossEntity({ q: 'apple' });
for (const s of suggestions.data) {
console.log(s.type, s.text); // "trademark", "APPLE" / "owner", "Apple Inc."
}
// Limit to a specific type
const ownerSuggestions = await signa.suggest.crossEntity({
q: 'apple',
type: 'owner',
});