BUG: Storefront API GraphQL filters HTML Tags

Hi to everybody,
i don’t know if it is a Bug or Feature that HTML Tags from Product Description are filtered when using Storefront API.
Would be very useful that these Tags are keept.

Especially when using serveral Paragraphs in Description.

{
  collectionByHandle(handle: "MYHANDLE") {
    id
    description
    products(first: 10) {
      edges {
        node {
          id
          description
          variants(first: 1) {
            edges {
              node {
                price
              }
            }
          }
          images(first: 1) {
            edges {
              node {
                originalSrc
              }
            }
          }
        }
        cursor
      }
      pageInfo {
        hasNextPage
      }
    }
  }
}

Using the storefront API you should be able to get the descriptionHtml field on products. I’ve tested this with success on my end, and it’s documented as well.

Cheers.

Hey Alex,
thanks for your reply. Yes you’re right with that. Got it!

regards