Skip to content

Returns total of 0 for products #17

@WazzaJB

Description

@WazzaJB

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions