1 unstable release

0.1.0 Mar 1, 2024

#18 in #cube

Download history 166/week @ 2024-02-29 15/week @ 2024-03-07 3/week @ 2024-03-14

184 downloads per month

Apache-2.0

29KB
664 lines

CubeClient

API client for Cube.JS powered on Rust language

Models are generated from Cube.js Open API Specificiation.

Protocols

  • HTTP (v1)
  • WS (v1)

Example

use cubeclient::apis::{configuration::Configuration, default_api as cube_api};
use cubeclient::models::{V1LoadRequest, V1LoadRequestQuery};

let mut cube_config = Configuration::default();
cube_config.bearer_access_token = Some("my token".to_string());
cube_config.base_path = Some("https://myapi.mydomain.mysubdomain/".to_string());

let query = {}; // build your own query
let request = V1LoadRequest {
    query: Some(query),
    query_type: Some("multi".to_string()),
};
let response = cube_api::load_v1(&self.get_client_config_for_ctx(ctx), Some(request)).await?;

License

Apache 2.0 licensed

Dependencies

~7–20MB
~297K SLoC