mirror of
https://github.com/ent/ent.git
synced 2026-04-28 05:30:56 +03:00
152 lines
3.0 KiB
JavaScript
152 lines
3.0 KiB
JavaScript
module.exports = {
|
|
md: [
|
|
{
|
|
type: 'category',
|
|
label: 'Getting Started',
|
|
items: [
|
|
'getting-started',
|
|
],
|
|
collapsed: false,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Schema',
|
|
items: [
|
|
'schema-def',
|
|
'schema-fields',
|
|
'schema-edges',
|
|
'schema-indexes',
|
|
'schema-mixin',
|
|
'schema-annotations',
|
|
],
|
|
collapsed: false,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Code Generation',
|
|
items: [
|
|
'code-gen',
|
|
'crud',
|
|
'traversals',
|
|
'eager-load',
|
|
'hooks',
|
|
'interceptors',
|
|
'privacy',
|
|
'transactions',
|
|
'predicates',
|
|
'aggregate',
|
|
'paging',
|
|
],
|
|
collapsed: false,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Migration',
|
|
items: [
|
|
'migrate',
|
|
'versioned-migrations',
|
|
'data-migrations',
|
|
'dialects',
|
|
],
|
|
collapsed: false,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Misc',
|
|
items: [
|
|
'templates',
|
|
'extensions',
|
|
'graphql',
|
|
'sql-integration',
|
|
'ci',
|
|
'testing',
|
|
'faq',
|
|
'feature-flags',
|
|
'generating-ent-schemas',
|
|
'translations',
|
|
'contributors',
|
|
'writing-docs',
|
|
'community'
|
|
],
|
|
collapsed: false,
|
|
},
|
|
],
|
|
tutorial: [
|
|
{
|
|
type: 'category',
|
|
label: 'First Steps',
|
|
items: [
|
|
'tutorial-setup',
|
|
'tutorial-todo-crud',
|
|
],
|
|
collapsed: false,
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'GraphQL Basics',
|
|
items: [
|
|
'tutorial-todo-gql',
|
|
'tutorial-todo-gql-node',
|
|
'tutorial-todo-gql-paginate',
|
|
'tutorial-todo-gql-field-collection',
|
|
'tutorial-todo-gql-tx-mutation',
|
|
'tutorial-todo-gql-mutation-input',
|
|
'tutorial-todo-gql-filter-input',
|
|
'tutorial-todo-gql-schema-generator',
|
|
],
|
|
collapsed: false,
|
|
},
|
|
{
|
|
type: 'category',
|
|
collapsed: false,
|
|
label: 'gRPC',
|
|
items: [
|
|
'grpc-intro',
|
|
'grpc-setting-up',
|
|
'grpc-generating-proto',
|
|
'grpc-generating-a-service',
|
|
'grpc-server-and-client',
|
|
'grpc-edges',
|
|
'grpc-optional-fields',
|
|
'grpc-service-generation-options',
|
|
'grpc-external-service',
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
collapsed: false,
|
|
label: 'Versioned Migrations',
|
|
items: [
|
|
{
|
|
type: 'doc',
|
|
id: 'versioned/intro',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'versioned/enable-ff',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'versioned/auto-plan',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'versioned/upgrade-prod',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'versioned/new-migration',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'versioned/custom-migrations',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'versioned/verifying-safety',
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|