collectionsCount
Requires access scope.
Count of collections. Limited to a maximum of 10000.
Arguments
- Anchor to queryquery•
A filter made up of terms, connectives, modifiers, and comparators. You can apply one or more filters to a query. Learn more about Shopify API search syntax.
- Anchor to default•string
Filter by a case-insensitive search of multiple fields in a document.
query=Bob Norman
query=title:green hoodie
- Anchor to collection_type•string
custom
smart
- Anchor to handle•string
- Anchor to product_id•id
Filter by collections containing a product by its ID.
- Anchor to product_publication_status•string
Filter by the publishable status of the resource on a channel, such as the online store. The value is a composite of the channel
app
ID (Channel.app.id
) and one of the valid values.approved
rejected
needs_action
awaiting_review
published
demoted
scheduled
provisionally_published
publishable_status:189769876-approved
- Anchor to publishable_status•string
Filter by the publishable status of the resource on a channel, such as the online store. The value is a composite of either the channel
app
ID (Channel.app.id
) or channelname
and one of the valid values.online_store_channel
published
unpublished
visible
unavailable
hidden
intended
visible
publishable_status:published
publishable_status:189769876:visible
publishable_status:pos:hidden
- Anchor to published_at•time
Filter by the date and time when the collection was published to the Online Store.
- Anchor to published_status•string
Filter by the published status of the resource on a channel, such as the online store.
unset
pending
approved
not approved
published_status:approved
- Anchor to title•string
- Anchor to updated_at•time
Example:
Valid values:
Valid values:
Example:
Valid values:
Example:
Valid values:
Example:
- Anchor to savedSearchIdsaved•
Search Id
Anchor to Possible returnsPossible returns
- Anchor to CountCount•
Details for count of elements.
- Retrieves a count of custom collections
- Retrieves a count of smart collections
Examples
query CollectionsCount {
collectionsCount(query: "collection_type:custom") {
count
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/2025-01/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "query CollectionsCount { collectionsCount(query: \"collection_type:custom\") { count } }"
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
query CollectionsCount {
collectionsCount(query: "collection_type:custom") {
count
}
}`,
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: `query CollectionsCount {
collectionsCount(query: "collection_type:custom") {
count
}
}`,
});
session = ShopifyAPI::Auth::Session.new(
shop: "your-development-store.myshopify.com",
access_token: access_token
)
client = ShopifyAPI::Clients::Graphql::Admin.new(
session: session
)
query = <<~QUERY
query CollectionsCount {
collectionsCount(query: "collection_type:custom") {
count
}
}
QUERY
response = client.query(query: query)