(items, context, depth = 2, markdownHeading = '')
| 76 | } |
| 77 | |
| 78 | export async function getChangelogMiniTocs(items, context, depth = 2, markdownHeading = '') { |
| 79 | if (!changelog.has('toc')) { |
| 80 | changelog.set('toc', await getAutomatedPageMiniTocItems(items, context, depth, markdownHeading)) |
| 81 | } |
| 82 | return changelog.get('toc') |
| 83 | } |
| 84 | |
| 85 | function getGraphqlVersion(version) { |
| 86 | if (!(version in allVersions)) { |
nothing calls this directly
no test coverage detected