954b1a9f11
* 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
24 lines
404 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|