shopify_storefront 0.1.1

Client for the Shopify Storefront API (2026-01)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Shopify Storefront API client.
///
/// # Schema
///
/// The vendored GraphQL schema lives at `schemas/storefront.graphql`.
/// Reference it in your `cynic::use_schema!` or `#[cynic::schema(...)]`
/// attributes to derive strongly-typed query fragments.
mod client;
mod error;

pub use client::Client;
pub use error::{Error, GraphqlError};

/// The Shopify Storefront API version this crate targets.
pub const API_VERSION: &str = "2026-01";