-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Weaviate auto capitalizes the first letter when creating a collection, as it follows the GraphQL naming conventions. However, it does not auto capitalize the first letter in some other situations.
Example
✔️ client.collections.create(name="test")
-> creates collection Test
✔️ client.collections.delete("test")
-> deletes collection Test
✔️ client.collections.get("test")
-> gets collection Test
❌ Filter.by_ref_multi_target("hasQuestion", target_collection="test")
-> does not work because it looks for test
and not Test
Expected behavior
I expect that the first letter is always auto capitalized when working with collections for consistency (and less debugging).
I used the weaviate-python-client for testing. If the auto capitalization is made in Weaviate, please transfer this issue accordingly.