1 2 3 4 5 6 7 8
//! JSON:API query strings: build them client-side with [`QueryBuilder`] and //! parse them server-side with [`Query`]. mod builder; mod parse; pub use builder::QueryBuilder; pub use parse::{Query, SortField};