grafbase-sdk 0.23.1

An SDK to implement extensions for the Grafbase Gateway
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Test utilities for running and interacting with a GraphQL gateway.
//!
//! This module provides functionality for:
//! - Configuring and starting a gateway instance
//! - Executing GraphQL queries against the gateway
//! - Building and loading extensions

mod config;
mod gateway;
mod request;

pub use config::LogLevel;
pub use gateway::{TestGateway, TestGatewayBuilder};
pub use grafbase_sdk_mock::{
    EntityResolverContext, GraphqlSubgraph, GraphqlSubgraphBuilder, ResolverContext, VirtualSubgraph,
};
pub use request::{GraphqlCollectedStreamingResponse, GraphqlRequest, GraphqlResponse, GraphqlStreamingResponse};