()
| 29 | } |
| 30 | |
| 31 | export function getGraphqlChangelog() { |
| 32 | if (!changelog.has('schema')) { |
| 33 | changelog.set( |
| 34 | 'schema', |
| 35 | readCompressedJsonFileFallbackLazily('./src/graphql/data/changelog.json')() |
| 36 | ) |
| 37 | } |
| 38 | |
| 39 | return changelog.get('schema') |
| 40 | } |
| 41 | |
| 42 | export function getGraphqlBreakingChanges(version) { |
| 43 | const graphqlVersion = getGraphqlVersion(version) |
no test coverage detected