sphereql-graphql 0.1.0-alpha-2

GraphQL integration for sphereQL spatial queries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! GraphQL integration for sphereQL spatial queries.
//!
//! Provides an [`async-graphql`] schema with queries for cone, shell, band,
//! wedge, and region lookups, k-nearest-neighbor search, and real-time
//! subscriptions via a broadcast event bus.

pub mod context;
pub mod query;
pub mod subscription;
pub mod types;

pub use context::*;
pub use query::*;
pub use subscription::*;
pub use types::*;