Soenneker.Shopify.GraphQlClient 4.0.85

Prefix Reserved
dotnet add package Soenneker.Shopify.GraphQlClient --version 4.0.85
                    
NuGet\Install-Package Soenneker.Shopify.GraphQlClient -Version 4.0.85
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Shopify.GraphQlClient" Version="4.0.85" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Shopify.GraphQlClient" Version="4.0.85" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Shopify.GraphQlClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Shopify.GraphQlClient --version 4.0.85
                    
#r "nuget: Soenneker.Shopify.GraphQlClient, 4.0.85"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Shopify.GraphQlClient@4.0.85
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Shopify.GraphQlClient&version=4.0.85
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Shopify.GraphQlClient&version=4.0.85
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Shopify.GraphQlClient

Generated, strongly typed client for Shopify Admin GraphQL mutations, including products, orders, customers, fulfillment, discounts, subscriptions, webhooks, and store configuration.

Installation

dotnet add package Soenneker.Shopify.GraphQlClient

For application registration and configuration-based authentication, use Soenneker.Shopify.GraphQlClientUtil. Instantiate this package directly when you already own the configured HttpClient.

Usage

using Soenneker.Shopify.GraphQlClient;

var httpClient = new HttpClient
{
    BaseAddress = new Uri(
        "https://your-store.myshopify.com/admin/api/2026-07/graphql.json")
};
httpClient.DefaultRequestHeaders.Add("X-Shopify-Access-Token", accessToken);

var shopify = new ShopifyGraphQlClient(new GraphQlHttpClient(httpClient));

TagsAddPayload? result = await shopify.Tags.Add.GetValue(
    new TagsAddVariables
    {
        Id = "gid://shopify/Product/1234567890",
        Tags = ["featured"]
    },
    cancellationToken);

GetValue(...) returns the operation payload directly. Use Execute(...) when you also need the GraphQL response envelope and top-level errors. Mutations can change store data; inspect each generated variables and payload type before calling it.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.Shopify.GraphQlClient:

Package Downloads
Soenneker.Shopify.GraphQlClientUtil

Provides a lazily initialized, authenticated Shopify Admin GraphQL client.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.85 0 9/4/2026
4.0.84 39 9/4/2026
4.0.83 121 8/31/2026
4.0.82 139 8/31/2026
4.0.81 90 8/30/2026
4.0.80 85 8/30/2026
4.0.79 208 8/30/2026
4.0.78 83 8/29/2026
4.0.77 119 8/28/2026
4.0.76 106 8/27/2026
4.0.75 105 8/26/2026
4.0.74 137 8/24/2026
4.0.73 212 8/14/2026
4.0.72 146 8/11/2026
4.0.71 241 8/6/2026
4.0.70 120 8/4/2026
4.0.69 132 7/31/2026
4.0.68 124 7/30/2026
4.0.67 269 7/28/2026
4.0.66 111 7/28/2026
Loading failed