how i can find my product collections and tags in Cart RunInput

how i can find my product collections and tags in Cart RunInput

Ramjan
Shopify Partner
1 0 1
query RunInput {
  cart {
    lines {
      quantity
      merchandise {
        __typename
        ...on ProductVariant {
          id
          product {
            id
            vendor
            productType
            inCollections{
                collectionId
            }
            hasTags{
                tag
            }
          }
        }
      }
    }
  }
  discountNode {
    metafield(namespace: "$app:test-discount", key: "function-key") {
      value
    }
  }
}

I want product id, vendor, productType , collectionIds and also tags. But not found in this query

Replies 0 (0)