//! Compile-time verification that GraphQL tables bridge into
//! `AnyTable` via the blanket `CborAdapter` in `vantage-table`.
//!
//! No network — the goal is to prove the type bounds line up
//! (`Value: Into<CborValue> + From<CborValue>`, `Id: Display + From<String>`).
//!
//! REST's half of this test is gone — the REST Vista shell no longer
//! routes references through `AnyTable`. The GraphQL half stays until
//! the matching shell rewrite ships.
use GraphqlApi;
use AnyTable;
use Table;
use EmptyEntity;