mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 08:26:21 +02:00
SPARQL 1.1 query service wrapping pub/sub triples interface Add a backend-agnostic SPARQL query service that parses SPARQL queries using rdflib, decomposes them into triple pattern lookups via the existing TriplesClient pub/sub interface, and performs in-memory joins, filters, and projections. Includes: - SPARQL parser, algebra evaluator, expression evaluator, solution sequence operations (BGP, JOIN, OPTIONAL, UNION, FILTER, BIND, VALUES, GROUP BY, ORDER BY, LIMIT/OFFSET, DISTINCT, aggregates) - FlowProcessor service with TriplesClientSpec - Gateway dispatcher, request/response translators, API spec - Python SDK method (FlowInstance.sparql_query) - CLI command (tg-invoke-sparql-query) - Tech spec (docs/tech-specs/sparql-query.md) New unit tests for SPARQL query |
||
|---|---|---|
| .. | ||
| conftest.py | ||
| test_doc_embeddings_milvus_query.py | ||
| test_doc_embeddings_pinecone_query.py | ||
| test_doc_embeddings_qdrant_query.py | ||
| test_graph_embeddings_milvus_query.py | ||
| test_graph_embeddings_pinecone_query.py | ||
| test_graph_embeddings_qdrant_query.py | ||
| test_memgraph_user_collection_query.py | ||
| test_neo4j_user_collection_query.py | ||
| test_rows_cassandra_query.py | ||
| test_sparql_expressions.py | ||
| test_sparql_parser.py | ||
| test_sparql_solutions.py | ||
| test_triples_cassandra_query.py | ||
| test_triples_falkordb_query.py | ||
| test_triples_memgraph_query.py | ||
| test_triples_neo4j_query.py | ||