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
It would be great if we could specify explicit class properties for different classes.
Example:
importtype{WeaviateClass}from'weaviate-ts-client';interfaceCustomerMacroProperties{title: string;text: string;clientId: string;}constCustomerMacro: WeaviateClass<CustomerMacroProperties>={class: 'CustomerMacro',description: 'A Customer macro',invertedIndexConfig: {indexPropertyLength: true,indexNullState: true,stopwords: {preset: 'none',},},properties: [{name: 'title',description: 'The title of the macro',dataType: ['text'],},{name: 'text',description: 'The text of the macro',dataType: ['text'],},{name: 'clientId',description: 'The ID of the customer the macro belongs to',dataType: ['string'],moduleConfig: {'text2vec-contextionary': {skip: true,},},}],};
The text was updated successfully, but these errors were encountered:
It would be great if we could specify explicit class properties for different classes.
Example:
The text was updated successfully, but these errors were encountered: