hasura / ddn-sample-app

MIT License
6 stars 3 forks source link

Join payment status from stripe #52

Open soorajshankar opened 3 months ago

soorajshankar commented 3 months ago

Test it out here https://console.hasura.io/project/hardy-pheasant-6274/environment/default/build/4cc01f3e8f/graphql

with graphql queries

query myQuerySuccess {
  sales_orders(
    limit: 10
  ) {
    id
    paymentId
    paymentStatus
  }
}

// opton2
query myQueryWithFailures {
  sales_orders(
    limit: 10
    where: {paymentId: {_neq: "pi_3P8hrySH1GVlVMsJ1bMaCuMo"}}
  ) {
    id
    paymentId
    paymentStatus
  }
}