January 2026 Summaries
2 posts from SurrealDB
Filter
Month:
Year:
Post Summaries
Back to Blog
Retrieval-Augmented Generation (RAG) has evolved with the integration of knowledge graphs, enhancing AI agents' ability to understand the relationships between concepts, chunks, and documents, a capability referred to as a context graph. This approach allows for more nuanced queries, enabling the retrieval of documents based on concept similarity rather than just matching text chunks. SurrealQL, the query language used, supports multi-model queries that combine vector, graph, relational, and BM25 models, facilitating sophisticated data retrieval without switching databases. Two main query patterns are highlighted: concept-based document retrieval, which leverages semantic similarity for document relevance, and direct chunk retrieval, which focuses on precise text-level matches. SurrealDB's features, such as built-in vector indexes, graph traversal without JOINs, and flexible query customization, make it a powerful tool for implementing RAG systems. The platform's cloud service and graphical IDE, Surrealist, further simplify managing and developing complex knowledge graphs, making it accessible for applications ranging from chatbots to autonomous agents.
Jan 29, 2026
2,278 words in the original blog post.
SurrealDB and its query language, SurrealQL, offer a modern alternative to traditional SQL databases like PostgreSQL, particularly for handling complex applications. While PostgreSQL is a reliable and scalable choice for many enterprises, it often presents challenges with complex joins and schema definitions. SurrealQL, which resembles traditional SQL, eliminates these complexities by allowing records to be linked using graph connections and supporting schemaless operations. This flexibility enables rapid prototyping and iteration, followed by schema definition for consistency. In a comparison using an e-commerce platform, SurrealQL demonstrates its capability to manage complex relationships and data retrieval more efficiently than PostgreSQL. By eliminating the need for complex joins and allowing for schema evolution without explicit definitions, SurrealDB provides a more intuitive and efficient approach to database management, offering features like real-time queries, advanced security, and support for multi-tenant access.
Jan 27, 2026
4,583 words in the original blog post.