# Proxy GraphQL queries to Shopify Customer Account API Executes GraphQL queries against Shopify's Customer Account API on behalf of the authenticated customer. This endpoint handles token management, refresh, and authentication automatically. What you can query: - Customer profile information - Order history and details - Saved addresses - Payment methods - Subscriptions (via Customer Account API schema) Token Management: - Automatically uses stored access token - Refreshes expired tokens automatically - Returns 401 if customer needs to re-authenticate Example Queries: graphql query { customer { id emailAddress { emailAddress } defaultAddress { address1 city } } } Authentication: Customer must be logged in and have completed OAuth flow Endpoint: POST /subscriptions/cp/api/customer-account-api/graphql Version: 0.0.1 ## Request fields (application/json): - `query` (string) - `variables` (object) ## Response 200 fields ## Response 401 fields