Crate sui_graphql_rpc

Source

Re-exports§

pub use sui_graphql_rpc_client as client;

Modules§

commands
config
context_data
extensions
server
test_infra

Macros§

filter
Applies the AND condition to the given RawQuery and binds input string values, if any.
inner_join
Accepts two RawQuery instances and a third expression consisting of which columns to join on.
or_filter
Applies the OR condition to the given RawQuery and binds input string values, if any.
query
Accepts a SELECT FROM format string and optional subqueries. If subqueries are provided, there should be curly braces {} in the format string to interpolate each subquery’s sql string into. Concatenates subqueries to the SELECT FROM clause, and creates a new RawQuery from the concatenated sql string. The binds from each subquery are added in the order they appear in the macro parameter. Subqueries are consumed into the new RawQuery.