-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix sidebar for documentation and /api-v16
#4331
Changes from all commits
5d94640
013119f
a46ae20
72b0a41
6c3d414
104fde7
5a048ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
const meta = { | ||
index: '', | ||
'-- 1': { | ||
type: 'separator', | ||
title: 'GraphQL.JS Tutorial', | ||
}, | ||
'getting-started': '', | ||
'running-an-express-graphql-server': '', | ||
'graphql-clients': '', | ||
'basic-types': '', | ||
'passing-arguments': '', | ||
'object-types': '', | ||
'mutations-and-input-types': '', | ||
'authentication-and-express-middleware': '', | ||
'-- 2': { | ||
type: 'separator', | ||
title: 'Advanced Guides', | ||
}, | ||
'constructing-types': '', | ||
'oneof-input-objects': '', | ||
'defer-stream': '', | ||
'-- 3': { | ||
type: 'separator', | ||
title: 'FAQ', | ||
}, | ||
'going-to-production': '', | ||
}; | ||
|
||
export default meta; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,12 @@ GraphQL.JS is the reference implementation to the [GraphQL Specification](https: | |
while closely following the Specification. | ||
|
||
You can build GraphQL servers, clients, and tools with this library, it's designed so you can choose which parts you use, for example, you can build your own parser | ||
and use the execution/validation from the library. There also a lot of useful utilities for schema-diffing, working with arguments and [many more](./utilities.mdx). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this link is 404, so I removed it cc @JoviDeCroock There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, should I use this link instead? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there an evergreen link that can be used instead? like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But if not, then yeah might as well I guess 👍 |
||
and use the execution/validation from the library. There also a lot of useful utilities for schema-diffing, working with arguments and many more. | ||
|
||
In the following chapters you'll find out more about the three critical pieces of this library | ||
|
||
- The GraphQL language | ||
- Document validation | ||
- GraphQL Execution | ||
|
||
You can also code along on [a tutorial](./getting-started.mdx). | ||
You can also code along on [a tutorial](/docs/getting-started). |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ module.exports = { | |
content: [ | ||
'./pages/**/*.{ts,tsx,mdx}', | ||
'./icons/**/*.{ts,tsx,mdx}', | ||
'./css/**/*.css', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you should not include |
||
'./theme.config.tsx', | ||
], | ||
theme: { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to have same redirects locally