Files
speckle-server/packages/server/test/graphql/gatekeeper.ts
T
Kristaps Fabians Geikins 954b1a9f11 feat: plan prices accurately read from Stripe (#4104)
* WIP prices + new caching utils

* cached workspace plan prices

* GQL API done

* integrated in frontend

* fixed missing FF

* CR fixes

* integration tests

* removed non-existant team yearly env var
2025-03-05 12:23:38 +02:00

24 lines
404 B
TypeScript

import gql from 'graphql-tag'
export const getWorkspacePlanPrices = gql`
query GetWorkspacePlanPrices {
serverInfo {
workspaces {
planPrices {
id
monthly {
amount
currency
currencySymbol
}
yearly {
amount
currency
currencySymbol
}
}
}
}
}
`