mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
* Structured data refactor - multi-index tables, remove need for manual mods to the Cassandra tables * Tech spec updated to track implementation
22 lines
595 B
Python
22 lines
595 B
Python
"""
|
|
Shared GraphQL utilities for row query services.
|
|
|
|
This module provides reusable GraphQL components including:
|
|
- Filter types (IntFilter, StringFilter, FloatFilter)
|
|
- Dynamic schema generation from RowSchema definitions
|
|
- Filter parsing utilities
|
|
"""
|
|
|
|
from .types import IntFilter, StringFilter, FloatFilter, SortDirection
|
|
from .schema import GraphQLSchemaBuilder
|
|
from .filters import parse_filter_key, parse_where_clause
|
|
|
|
__all__ = [
|
|
"IntFilter",
|
|
"StringFilter",
|
|
"FloatFilter",
|
|
"SortDirection",
|
|
"GraphQLSchemaBuilder",
|
|
"parse_filter_key",
|
|
"parse_where_clause",
|
|
]
|