Skip to main content

faucet_source_graphql/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-source-graphql
4//!
5//! A config-driven GraphQL API source with cursor-based pagination,
6//! JSONPath record extraction, and pluggable authentication.
7
8pub mod config;
9pub mod stream;
10
11pub use faucet_core::{FaucetError, Source};
12
13pub use config::{GraphqlAuth, GraphqlPagination, GraphqlStreamConfig};
14pub use stream::GraphqlStream;