faucet-source-graphql 1.0.0

GraphQL API source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # 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::{GraphqlAuth, GraphqlPagination, GraphqlStreamConfig};
pub use stream::GraphqlStream;