``` subscription { verificationCode (where: { mu...
# prisma-whats-new
j
Copy code
subscription {
  verificationCode (where: { mutation_in: [CREATED] }) {
    node {
      code
      validUntil
      identifier {
        phoneNumber {
          phoneNumber
          countryCode {
            dialingCode
          }
        }
      }
    }
  }
}