Files
ent/doc/website/sidebars.js
Ariel Mashraki e1e197483c doc/tutorial: add page about filter inputs (#1706)
* doc/tutorial: add page about filter inputs

Also, fixed some issues in website configuration

* Update doc/md/tutorial-todo-gql-filter-input.md

Co-authored-by: Rotem Tamir <rotemtamir@gmail.com>

Co-authored-by: Rotem Tamir <rotemtamir@gmail.com>
2021-07-11 16:08:26 +03:00

109 lines
2.1 KiB
JavaScript
Executable File

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',
'privacy',
'transactions',
'predicates',
'aggregate',
'paging',
],
collapsed: false,
},
{
type: 'category',
label: 'Migration',
items: [
'migrate',
'dialects',
],
collapsed: false,
},
{
type: 'category',
label: 'Misc',
items: [
'templates',
'graphql',
'sql-integration',
'testing',
'faq',
'generating-ent-schemas',
'feature-flags',
'translations',
'contributors',
'writing-docs',
'slack'
],
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',
],
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',
]
}
]
}