faucet-source-graphql 0.2.0

GraphQL API source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # faucet-source-graphql
//!
//! A config-driven GraphQL API source with cursor-based pagination,
//! JSONPath record extraction, and pluggable authentication.

pub mod config;
pub mod stream;

pub use faucet_core::{FaucetError, Source};

pub use config::GraphqlStreamConfig;
pub use stream::GraphqlStream;