OneGraph / onegraph-changelog

Product Changelog for OneGraph using Persisted Queries

Home Page:https://onegraph.com/changelog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Updates to the Stripe API

dwwoelfel opened this issue · comments

We've made a big update to the Stripe API to support all of the latest additions from Stripe.

There is a lot of new stuff, so head over to OneGraph to check it out.

We wanted to highlight that you can now query addresses for Stripe customers, since some of you were asking for it:

query StripeCustomers {
  stripe {
    customers {
      edges {
        node {
          id
          email
          address {
            city
            state
            country
            line1
            line2
          }
        }
      }
    }
  }
}

Hop into our Spectrum channel if you have any questions or a use case that's not supported.