forked from searchkit/searchkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
74 lines (74 loc) · 2.16 KB
/
sidebars.js
File metadata and controls
74 lines (74 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module.exports = {
docs: {
'Quick Guide': [
'overview',
'api-setup',
{
'UI setup': [
'base-ui-setup',
'ui-setup-eui',
'ui-setup-own-components',
],
}
],
Reference: [
'searchkit-schema',
'searchkit-client',
'searchkit-elastic-ui',
],
'API Guides': [
'customisations-hit-resolver',
'customisations-adding-your-own-filters',
'customisations-query-boosting-relevance',
'customisations-graphql-multiple-configurations',
'customisations-graphql-types',
'customisations-ui-add-new-facet-class',
'customisations-add-base-filters',
'guides-using-filters',
'customisations-authentication-and-authorisation',
'customisations-api-logging',
'customisations-conditional-facets',
'guides-highlighting',
'guides-geo-search',
],
'Indexing Guides': ['guides-elasticsearch-setup-indexing'],
'Frontend Guides': [
'guides-graphql-schema-cheat-sheet',
'guides-url-sync',
'guides-ssr',
'guides-seo'
],
'Notes': ['v2-v3-migration', 'guides-upgrade-rc41', 'local-development-with-searchkit-packages']
},
'UI Docs': [
'own-components',
'own-components-ui-search-query',
'own-components-ui-result-list-hits',
'own-components-ui-summary',
'own-components-ui-selected-filters',
'own-components-ui-pagination',
// sorting
{
'Facets': [
'own-components-ui-facet-display',
'own-components-ui-facet-value-filtering',
'own-components-hierarchical-facet',
'own-components-value-facet'
// range facet
// date range facet
]
}
],
Examples: [
{ 'API + Frontend': ['example-apps-next'],
'API only': ['example-apps-prisma', 'example-apps-aws-lambda', 'example-apps-express' ],
'Frontend only': ['example-apps-create-react-app'],
'Tutorials': [
{
type: 'link',
label: "How to build a GraphQL API with AWS Lambda, Elasticsearch and Searchkit",
href: "https://dev.to/joemcelroy/search-ui-graphql-api-with-elasticsearch-searchkit-4jp7"
}
]
}]
};