yujaki - Hi, all, feel free to contact me if yo...
Hi, all, feel free to contact me if you need help.
C-lara - Hi all, I know from previous discussio...
Hi all, I know from previous discussions that vector search is on the plate for future TypeDB developments. I currently always work with a TypeDB/Weaviate combination but as it creates synchronization overhead I would love to learn more about the intended timeline for vector search 😇
I have a client showing genuine interest in TypeDB but one of their main interests is to have vector search included in the solution (like MongoDB)....
TypeQL vs SQL
@mark let's make a thread here since the channel you chose is for language design and engineering
Robert Holwerda - The ai on typedb.com says the...
The ai on typedb.com says there isn't in 3.x but there was in 2.x. But surely this feature hasn't been removed?
Robert Holwerda - Is there a way to get all ent...
Is there a way to get all entity instances in a database regardless of schema?
RocksDB swaps?
I am new to TypeDB. I was wondering if there has been any discussions in the past around providing mechanisms to plug our own storage engine? Also the entire query processing pipeline seems to written in non-async Rust. Was this choice taken with RocksDB storage engine in mind?
TypeDB 2 question
Sorry for the annoying v2 question, but this is our last release before upgrading. How do i print out the detail inside the map returned from an insert query?
Basically, at the moment we do this:
```
def load_typeql_data(data_list, stix_connection: Dict[str, str]):...
Dixit Shah - What I need help with is a TypeQL ...
What I need help with is a TypeQL query that allows me to select a sap_object and then find all the objects that it 'needs' or 'is_needed_by'. I've tried various things but in all cases I seem to get a table returned that has both all the sap_objects that it 'needs' and 'is_needed_by' all together.
Help with query
Hi I wonder if anyone can help. I'm relatively new to TypeQL. I have a simple schema like this:
define
entity sap_object,...
TQLS script SHA error
Hello, when loading any .tqls I'm getting the following error: error: ...
**Error executing command**
source ../core/attributes.tql
source
--> Error
Expected '../core/attributes.tql' to have sha256 'source', but calculated 'b9be3fec46b56dd2fc5f566255e22639b10f8358dde5de6b373fa022d55ea656',
**Error executing command**
source ../core/attributes.tql
source
--> Error
Expected '../core/attributes.tql' to have sha256 'source', but calculated 'b9be3fec46b56dd2fc5f566255e22639b10f8358dde5de6b373fa022d55ea656',
AlanWu-CCIA - Hi TypeDB, heads up, this is more...
Hi TypeDB, heads up, this is more like a bug report. I am exporting and importing databases in 3.5.0 and I encountered some strange behaviours. Say I have a database called
my_db with a function my_func()that essentially executes on a pattern match <my_pattern>. I can run everything normally in my_db which I setup from scratch. But when I exported this database and imported it as my_db_imported, running match <my_pattern> directly returns NO results (unexpected), while running `...Andrew - Quick question about schema naming con...
Quick question about schema naming conventions. Is there an elegant way to deal with things that function as - hence need to be modelled as - both an entity and a role? Eg “court” as a role that an org plays AND a type of organisation. Want to be able to reflect the broader range of orgs playing the role, as opoosed to those officially designated as such. Is the answer just suck it up and use different names?
Rules?
I am sure this has come up before, but your main features page shows that version three supports rules while your migration page says they have been removed before I spend my time looking at three. Can somebody tell me are rules gone and is there any plan to bring them back or did this turn into just another database?
Studio Schema Viz Customization
A quick question regarding the new Web base Studio (BTW, its great to be able to use TypeDB for learning with no install required!). I've created a small schema for a demo I'm doing in a few weeks to a potential client. I'm wondering is there any way to manipulate what appears in the Visualizer (its a nice improvement from v2). For example: 1) suppress the attributes to make it a bit more readable 2) show ONE selected entity with any other entities connected via a relation 3) maybe some other co...
Mark McLellan - Update on my failure to commit ...
Update on my failure to commit a 30K row file. Alex tested it and it worked for him. I cut the file in half and each half was able to insert and commit. then i tried the full file again and this time it did the commit. so, not sure why it was failing in the video that i sent to you. i will monitor and report any similar failings in future. but for the moment, all is working well.
kevinsullivan - Hey folks, it's kind of unclear...
Hey folks, it's kind of unclear from quick search results whether lists, structs, etc., are yet available? I'm assuming no, though the GPTs say yes. Is it no? If so, any ETA?
Mark McLellan - @krishnan i have sent an email ...
@krishnan i have sent an email to Alex and asked him to forward to you as well. it has a short video. perhaps you can see where i am going wrong 🙁
In postgres we have queries like `SELECT
In postgres we have queries like
SELECT * from some_table WHERE user_id = auth.uid() OR members ? auth.uid(). We poll that, compare the ids and versions of the rows to the ids and verisons the client says it has, and only return whatever has changed (higher version than client_data), no longer matches (in client data but not in query results), or is new (not in client data but in query results)