chris

Results 28 issues of chris

1. Create a tutorial to demonstrate how to use the plugin. Include an examples folder in root of project to demonstrate various use cases. 2. Add documentation to show how...

documentation

Problem: Users arent able to shape the replies coming back from api side via hooks Solution: Pass Fragments directly to hooks ```js const { retrieveStripeCustomer } = useStripeCustomer({ retrieveFragment: gql`...

enhancement

When using the setup command have an option to opt in to having a Demo page generated

enhancement

Problem: Need a way to pass Stripe additional properties like when items need to be expanded Solution: update sdl to accept a data param that accepts the "payload" and additional...

enhancement

Managing sdl schema is time consuming. Better approach would be to generate schema from Stripe's openAPI Spec. This PR is part one of a larger issue (https://github.com/chrisvdm/redwoodjs-stripe/issues/117) API (might need...

Create [Yoga GraphQL](https://the-guild.dev/graphql/yoga-server/docs/features/envelop-plugins#writing-plugins) plugin to manage sdl. Pass plugin to [ `extraPlugins`](https://redwoodjs.com/docs/graphql#graphql-handler-setup) on `createGraphQLHandler` _(api/src/functions/graphql.js)_ **Plugin specs:** - Use Stripe's [openapi](https://raw.githubusercontent.com/stripe/openapi/master/openapi/spec3.json) to generate sdl - Should allow to create custom...

enhancement

Use unit tests for functions Integration tests with apps in `/examples` folder* Test on push to remote branch PR can only be merged if all tests pass _* To be...

important

Add support for [Stripe Payment Element](https://stripe.com/docs/payments/payment-element) api ```js import {StripeElement} from '@redwoodjs-stripe/web' //... ```

Add example apps that use Stripe and PayStack* - Single page online store - Subscription service