-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Hey folks,
Appreciate you sharing this plugin, extremely useful for a project we're working on.
I'm having difficulties with it now on WordPress 6.5, WPGraphQL 1.27, and WPGraphQL-WooCommerce 0.20.0.
All my queries are now returning a total of 0.
I'm going to look at rolling back in the mean time but was wondering if anyone had ideas for a potential hotfix? PHP is not my forte these days but I am happy to work on a pull request!
Here is the query I am using:
query Products(
$id: ID!
$slug: String!
$idType: ProductCategoryIdType = SLUG
$size: Int = 15
$offset: Int = 0
) {
products(
where: {
offsetPagination: { size: $size, offset: $offset }
category: $slug
}
) {
edges {
node {
... on SimpleProduct {
id
title
formattedPrice: price(format: FORMATTED)
rawPrice: price(format: RAW)
height
width
name
slug
sku
image {
thumbnail: sourceUrl(size: THUMBNAIL)
large: sourceUrl(size: LARGE)
}
}
}
}
pageInfo {
offsetPagination {
hasMore
hasPrevious
total
}
}
}
}
Thanks in advance for any guidance you might be able to offer.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels