Admin API OR GraphQL - Product - how get access to "Standard PRODUCT TYPE"

Hello,

I have trouble finding in manual how to access (READ) via AdminAPI or GraphQL how values from field.

Hi,

It’s the product_type property.

Hi,

The product_type field is a custom product type, not a Standard product type.

Hi,

Tested using the unstable api version.

{
  products(first: 5) {
    edges {
      node {
        standardProductType {
          fullName
          name
        }
      }
    }
  }
}

Ref here

Related post