Skip to content

update ContributingToCodePage.md replace src/content/code path by src/code #1652

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

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions notes/ContributingToCodePage.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## Contributing to the Code Page
# Contributing to the Code Page

Hi, thanks for reading the docs!

Secondly, we want to provide a really strong overview of all the libraries in the GraphQL eco-system. To make this
easy for contributors the code page is automatically generated from a series of markdown files in this repo.

```sh
$ tree src/content/code
src/content/code
$ tree src/code
src/code
├── language-support
│ ├── c-c
│ │ └── tools
Expand Down Expand Up @@ -45,7 +45,7 @@ npm: "graphql-http"

To run an `graphql-http` hello world server:

```bash
```sh
npm install express graphql-http graphql
```

Expand All @@ -56,7 +56,7 @@ var express = require("express")
var { createHandler } = require("graphql-http/lib/use/express")
var { buildSchema } = require("graphql")

var schema = buildSchema(`
var schema = buildSchema(/* GraphQL */`
type Query {
hello: String
}
Expand Down
2 changes: 1 addition & 1 deletion notes/NewSiteArchitecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ This page should serve as a high-level view of what resources are available and
- Popular blogs
- Twitter feed
- Calendar of upcoming meetups or conference talks related to GraphQL (encourage edits by community)
- Grid of recorded videos about GraphQL (conf talks, etc).
- Grid of recorded videos about GraphQL (conf talks, etc.).

## Blog

Expand Down