Sample code for 30+ languages & platforms
Rust Requires Chilkat v11.0.0+

Shopify GraphQL Simple Query (Get Shop Object)

See more Shopify Examples

Demonstrates a simple Shopify GraphQL query to get specific fields of the Shop object.

Chilkat Rust Downloads

Rust

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let http = chilkat::Http::new();

// This example will use private authentication (which is HTTP Basic authentication)
// See the other Chilkat Shopify examples for OAuth2 authentication.
// To use HTTP Basic Authentication with any HTTP request, we simply set the Login, Password, and BasicAuth properties.
// Important: All HTTP requests using Basic authentication must be over SSL/TLS.
http.set_login("SHOPIFY_PRIVATE_API_KEY");
http.set_password("SHOPIFY_PRIVATE_API_SECRET_KEY");
http.set_basic_auth(true);

// We're going to do a POST  https://{shop}.myshopify.com/admin/api/2021-04/graphql.json
// Make sure to replace "chilkat" with your store name.

// The body of the request will be:
//    {
//        shop {
//            id
//            name
//            description
//            email
//         }
//     }

// The above query is not JSON.  It looks like JSON, but it's actually not.
// We'll just make it one line:

let query = "{ shop { id name description email } }".to_string();

// My store name is "chilkat".  Use your store name here instead.
let url = "https://chilkat.myshopify.com/admin/api/2021-04/graphql.json".to_string();

let resp = chilkat::HttpResponse::new();
if http.http_str("POST", &url, &query, "utf-8", "application/graphql", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

// Examine the response code.
if resp.status_code() != 200 {
    println!("Received error response code: {}", resp.status_code());
    println!("Response body:");
    println!("{}", resp.body_str());
    return;
}

let sb_response_body = chilkat::StringBuilder::new();
let _ = resp.get_body_sb(&sb_response_body);
let j_resp = chilkat::JsonObject::new();
let _ = j_resp.load_sb(&sb_response_body);
j_resp.set_emit_compact(false);

println!("Response Body:");
println!("{}", j_resp.emit().unwrap_or_default());

let resp_status_code = resp.status_code();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
    println!("Response Header:");
    println!("{}", resp.header());
    println!("Failed.");
    return;
}

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "data": {
//     "shop": {
//       "id": "gid:\/\/shopify\/Shop\/24198053",
//       "name": "chilkat",
//       "description": null,
//       "email": "admin@chilkatsoft.com"
//     }
//   },
//   "extensions": {
//     "cost": {
//       "requestedQueryCost": 1,
//       "actualQueryCost": 1,
//       "throttleStatus": {
//         "maximumAvailable": 1000.0,
//         "currentlyAvailable": 999,
//         "restoreRate": 50.0
//       }
//     }
//   }
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

let shop_id = j_resp.string_of("data.shop.id").unwrap_or_default();
let shop_name = j_resp.string_of("data.shop.name").unwrap_or_default();
let shop_description = j_resp.string_of("data.shop.description").unwrap_or_default();
let shop_email = j_resp.string_of("data.shop.email").unwrap_or_default();
let cost_requested_query_cost = j_resp.int_of("extensions.cost.requestedQueryCost");
let cost_actual_query_cost = j_resp.int_of("extensions.cost.actualQueryCost");
let cost_throttle_status_maximum_available = j_resp.string_of("extensions.cost.throttleStatus.maximumAvailable").unwrap_or_default();
let cost_throttle_status_currently_available = j_resp.int_of("extensions.cost.throttleStatus.currentlyAvailable");
let cost_throttle_status_restore_rate = j_resp.string_of("extensions.cost.throttleStatus.restoreRate").unwrap_or_default();

println!("Shop name: {}", shop_name);
// ...