GraphQL - Price Rules - No value or value_type

Try this.

{
  priceRules(first: 5, reverse:true) {
    edges {
      node {
        id
        title
        status
        valueV2 {
          __typename
          ... on PricingPercentageValue {
            percentage
          }
          ... on MoneyV2 {
            amount
            currencyCode
          }
        }
      }
    }
  }
}