forked from
slices.network/slices
Highly ambitious ATProtocol AppView service and sdks
1//! GraphQL endpoint implementation for Slices
2//!
3//! This module provides a GraphQL interface to query slice records with support
4//! for joining linked records through AT Protocol strongRef references.
5
6mod schema_builder;
7mod dataloaders;
8mod types;
9pub mod handler;
10
11pub use schema_builder::build_graphql_schema;
12pub use handler::{graphql_handler, graphql_playground};