mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
cc30f08f6e
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4261 GitOrigin-RevId: 3d80068acdd61b5350fc36ec3444db47508f9c09
69 lines
1.5 KiB
JavaScript
69 lines
1.5 KiB
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
docsSidebar: [
|
|
// {
|
|
// type: 'link',
|
|
// href: '/latest/graphql/cloud/index',
|
|
// label: 'Hasura Cloud',
|
|
// },
|
|
{
|
|
type: 'category',
|
|
label: 'Hasura GraphQL Engine',
|
|
// link: {
|
|
// type: 'doc',
|
|
// id: 'graphql/core/index',
|
|
// },
|
|
items: [
|
|
{ type: 'autogenerated', dirName: 'graphql/core' }
|
|
],
|
|
},
|
|
// { type: 'autogenerated', dirName: 'graphql/core' },
|
|
],
|
|
cloudDocsSidebar: [
|
|
// {
|
|
// type: 'link',
|
|
// href: '/latest/graphql/core/index',
|
|
// label: 'Hasura GraphQL Engine',
|
|
// },
|
|
{
|
|
type: 'category',
|
|
label: 'Hasura Cloud',
|
|
// link: {
|
|
// type: 'doc',
|
|
// id: 'graphql/cloud/index',
|
|
// },
|
|
items: [
|
|
{ type: 'autogenerated', dirName: 'graphql/cloud' }
|
|
],
|
|
},
|
|
// { type: 'autogenerated', dirName: 'graphql/cloud' }
|
|
],
|
|
|
|
// But you can create a sidebar manually
|
|
/*
|
|
tutorialSidebar: [
|
|
{
|
|
type: 'category',
|
|
label: 'Tutorial',
|
|
items: ['hello'],
|
|
},
|
|
],
|
|
*/
|
|
};
|
|
|
|
module.exports = sidebars;
|