Skip to content

Commit b864ef2

Browse files
authored
docs(pricing): clarify high volume discounts (#6995)
Good addition. I'd have guessed that there's a volume discount, but I can see that it might not be obvious.
1 parent 147e862 commit b864ef2

File tree

1 file changed

+7
-3
lines changed
  • packages/web/docs/src/components/pricing

1 file changed

+7
-3
lines changed

packages/web/docs/src/components/pricing/index.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function PlanFeaturesListItem({
6464
}
6565

6666
const USAGE_DATA_RETENTION_EXPLAINER = 'How long your GraphQL operations are stored on Hive';
67-
const OPERATIONS_EXPLAINER = 'GraphQL operations reported to GraphQL Hive';
67+
const OPERATIONS_EXPLAINER = 'GraphQL operations reported to Hive Console';
6868

6969
export function Pricing({ className }: { className?: string }): ReactElement {
7070
type PlanType = 'Hobby' | 'Pro' | 'Enterprise';
@@ -272,13 +272,17 @@ export function Pricing({ className }: { className?: string }): ReactElement {
272272
<PlanFeaturesListItem
273273
icon={<OperationsIcon />}
274274
category="Operations per month"
275-
features={['Custom operations limit']}
275+
features={[
276+
'Custom operation limit',
277+
'Large request volume discount',
278+
'Ability to exceed operation limit without loss of data',
279+
]}
276280
tooltip={OPERATIONS_EXPLAINER}
277281
/>
278282
<PlanFeaturesListItem
279283
icon={<RetentionIcon />}
280284
category="Usage data retention"
281-
features={['One year contract']}
285+
features={['One year or more']}
282286
tooltip={USAGE_DATA_RETENTION_EXPLAINER}
283287
/>
284288
<PlanFeaturesListItem

0 commit comments

Comments
 (0)