Docs: explain() (#18886)

* direct copy from ChatGPT

* add new menu item, clean up items

* fix TOC video

* fix formatting from GPT

* Renaming the page - it should be more like a "job to be done" rather than "here is a specific function"

* re-ordering the sections - get people using it first, then teach them the details

* Adds the explain section to the docs
This commit is contained in:
Copple
2023-11-13 06:58:05 +01:00
committed by GitHub
parent 30375c55a0
commit fd230d657f
5 changed files with 139 additions and 57 deletions

View File

@@ -791,15 +791,18 @@ export const api: NavMenuConstant = {
name: 'Guides',
url: '/guides/api',
items: [
{ name: 'Creating API routes', url: '/guides/api/creating-routes', items: [] },
{ name: 'How API Keys work', url: '/guides/api/api-keys', items: [] },
{ name: 'Securing your API', url: '/guides/api/securing-your-api', items: [] },
{ name: 'Creating API routes', url: '/guides/api/creating-routes' },
{ name: 'How API Keys work', url: '/guides/api/api-keys' },
{ name: 'Securing your API', url: '/guides/api/securing-your-api' },
{
name: 'Debugging performance issues',
url: '/guides/api/rest/debugging-performance',
},
{
name: 'Querying joins and nested tables',
url: '/guides/api/joins-and-nesting',
items: [],
},
{ name: 'Using custom schemas', url: '/guides/api/using-custom-schemas', items: [] },
{ name: 'Using custom schemas', url: '/guides/api/using-custom-schemas' },
],
},
],