Files
automatisch/packages/web/src/graphql/queries/get-trial-status.ee.js
2024-02-29 09:38:32 +00:00

9 lines
149 B
JavaScript

import { gql } from '@apollo/client';
export const GET_TRIAL_STATUS = gql`
query GetTrialStatus {
getTrialStatus {
expireAt
}
}
`;