typescript-client icon indicating copy to clipboard operation
typescript-client copied to clipboard

Official Weaviate TypeScript Client

Results 62 typescript-client issues
Sort by recently updated
recently updated
newest added

I'm trying to build a demo app using the JS client, and the documentation at https://weaviate.io/developers/weaviate/current/client-libraries/javascript.html barely scratches the surface. While it correctly directs the developer to the REST and...

## Background Weaviate allows a set three different where filters in classifications, but the client currently does not take any arguments. ## Goals * [ ] `.withSourceWhere()` is added to...

Add a function that checks if weaviate is responding on the given url:port and blocks until it does or a given timeout has passed

Use the GQL [introspection query](https://graphql.org/graphql-js/utilities/#introspectionquery) and [TypedDocumentNode](https://the-guild.dev/blog/typed-document-node) to automatically generate types for the client to use when querying

On unstable connections, the token refresh can sometimes fail which can results in unauthenticated clients. To be able to handle these situations, the client should: - set a default timeout...

- Changes `ClientParams` to have a `connectionParams: ConnectionParams` field - Moves `rest` and `grpc` fields inside `connectionParams` - Renames `rest` to `http`

- Closes https://github.com/weaviate/typescript-client/issues/125 without significant refactoring required; builder pattern is easily forward compatible - Closes https://github.com/weaviate/typescript-client/issues/126 by the addition of new types and classes for providing subsearch arguments and mapping...

The V3 docs say the api key should be passed as a string when connecting in custom mode. See here: https://weaviate.io/developers/weaviate/client-libraries/typescript/typescript-v3 ```import weaviate from 'weaviate-client' const client = await weaviate.client({...

## Description I am trying to use the `weaviate-client` library in a Cloudflare Worker, but I am encountering issues related to the `http2` module. The error message suggests that the...