refactor: fix namespaces (#116)

This commit is contained in:
Kyrch
2025-07-27 01:36:12 -03:00
committed by GitHub
parent fda968defc
commit 578f00cdaf
14 changed files with 19 additions and 19 deletions
+13 -13
View File
@@ -575,40 +575,40 @@ export default {
},
],
sidebar: {
'/guide/': [
'/graphql/': [
{
text: 'Introduction',
collapsed: false,
items: [
{ text: 'Rate Limiting', link: '/guide/intro/ratelimiting/' },
{ text: 'Authentication', link: '/guide/intro/authentication/' },
{ text: 'Validation', link: '/guide/intro/validation/' },
{ text: 'Rate Limiting', link: '/graphql/intro/ratelimiting/' },
{ text: 'Authentication', link: '/graphql/intro/authentication/' },
{ text: 'Validation', link: '/graphql/intro/validation/' },
]
},
{
text: 'GraphQL',
text: 'Guide',
collapsed: false,
items: [
{ text: 'Getting Started', link: '/guide/graphql/getting-started/' },
{ text: 'Pagination', link: '/guide/graphql/pagination/' },
{ text: 'Filtering', link: '/guide/graphql/filtering/' },
{ text: 'Sorting', link: '/guide/graphql/sorting/' },
{ text: 'Relationships', link: '/guide/graphql/relationships/' },
{ text: 'Getting Started', link: '/graphql/guide/getting-started/' },
{ text: 'Pagination', link: '/graphql/guide/pagination/' },
{ text: 'Filtering', link: '/graphql/guide/filtering/' },
{ text: 'Sorting', link: '/graphql/guide/sorting/' },
{ text: 'Relationships', link: '/graphql/guide/relationships/' },
],
},
{
text: 'Examples',
collapsed: false,
items: [
{ text: 'Search', link: '/guide/examples/search/' },
{ text: 'Filter by External Site', link: '/guide/examples/filter-by-external-site/' },
{ text: 'Search', link: '/graphql/examples/search/' },
{ text: 'Filter by External Site', link: '/graphql/examples/filter-by-external-site/' },
],
},
{
text: 'Migrating',
collapsed: false,
items: [
{ text: 'Migrating from REST API', link: '/guide/migrating/' },
{ text: 'Migrating from REST API', link: '/graphql/migrating/' },
],
}
],
@@ -10,23 +10,23 @@ AnimeThemes is a simple and consistent repository of anime opening and ending th
The AnimeThemes API provides access to our repository resources for your development needs.
## [GraphQL](/guide/intro/graphql/)
## [GraphQL](/graphql/guide/getting-started/)
The AnimeThemes API selectively implements the [**GraphQL Tool**](https://graphql.org).
We provide an overview of where the AnimeThemes API adheres to or deviates from the specification.
## [Rate Limiting](/guide/intro/ratelimiting/)
## [Rate Limiting](/graphql/intro/ratelimiting/)
The AnimeThemes API applies the standard named rate limiter of the Laravel Framework.
We provide an overview of managing request quotas.
## [Authentication](/guide/intro/authentication/)
## [Authentication](/graphql/intro/authentication/)
The AnimeThemes API uses token-based authentication to grant the user access to mutations.
## [Validation](/guide/intro/validation/)
## [Validation](/graphql/intro/validation/)
The AnimeThemes API uses form requests to validate query parameters.
+2 -2
View File
@@ -12,7 +12,7 @@ hero:
actions:
- theme: brand
text: Get Started
link: /guide/intro/
link: /graphql/intro/
- theme: alt
text: GraphiQL
link: https://graphql.animethemes.moe/graphiql
@@ -20,6 +20,6 @@ features:
- icon: 🔍
title: Advanced Querying
details: Support for randomization, searching and filtering by direct fields and relation fields out of the box
link: /guide/graphql/filtering/
link: /graphql/guide/filtering/
linkText: Example
---