@redwoodjs-stripe/api
Version:
API-side code for RedwoodJS-Stripe projects
83 lines (72 loc) • 1.43 kB
JavaScript
const schema = (
/* GraphQL */
`
scalar URL
type StripeItem {
id: ID!
name: String
images: [String]
description: String
price: Int
quantity: Int
type: StripeItemTypeEnum
}
input StripeCreatedInput {
gt: Int
gte: Int
lt: Int
lte: Int
}
input StripeRecurringPriceInput {
interval: StripeRecurringPriceInterval
usage_type: StripeRecurringPriceUsageType
}
enum StripeRecurringPriceInterval {
day
week
month
year
}
enum StripeRecurringPriceUsageType {
metered
licensed
}
input StripeProductParamsInput {
active: Boolean
created: StripeCreatedInput
ending_before: String
ids: [ID]
limit: Int
shippable: Boolean
starting_after: String
url: String
}
input StripePriceParamsInput {
active: Boolean
currency: String
product: ID
created: StripeCreatedInput
ending_before: String
limit: Int
lookup_keys: [String]
recurring: StripeRecurringPriceInput
starting_after: String
type: StripeItemTypeEnum
}
input StripeItemsParamsInput {
productParams: StripeProductParamsInput
priceParams: StripePriceParamsInput
}
enum StripeItemTypeEnum {
one_time
recurring
}
type Query {
stripeItems(params: StripeItemsParamsInput): [StripeItem!]! @skipAuth
stripeItem(id: ID!): StripeItem @skipAuth
}
`
);
export {
schema
};