postgrest-parser 0.2.0

PostgREST URL-to-SQL parser for Rust and WASM
Documentation
pub mod field;
pub mod filter;
pub mod logic;
pub mod mutation;
pub mod order;
pub mod params;
pub mod prefer;
pub mod rpc;
pub mod schema;
pub mod select;

pub use field::{Field, JsonOp};
pub use filter::{Filter, FilterOperator, FilterValue, Quantifier};
pub use logic::{LogicCondition, LogicOperator, LogicTree};
pub use mutation::{
    ConflictAction, DeleteParams, InsertParams, InsertValues, OnConflict, Operation, ResolvedTable,
    UpdateParams,
};
pub use order::{Direction, Nulls, OrderTerm};
pub use params::ParsedParams;
pub use prefer::{Count, Missing, Plurality, PreferOptions, Resolution, ReturnRepresentation};
pub use rpc::RpcParams;
pub use schema::{Cardinality, Column, Junction, Relationship, Table};
pub use select::{ItemHint, ItemType, SelectItem};