Skip to content

Commit

Permalink
add graphql docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmwang committed Feb 24, 2025
1 parent 4d13730 commit aab97f7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/core/backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,7 @@ export const TermModel: Model<ITermItem> = model<ITermItem>(

To test the GraphQL API, it is recommended to first [seed the local database](../../getting-started/local-development.md#seeding-local-database) in order to have data.

API testing is mainly done through the [Apollo GraphQL Sandbox](https://www.apollographql.com/docs/apollo-sandbox) available at `http://localhost:8080/api/graphql` when the backend container is running. While the UI is helpful for creating queries for you, it is highly recommended to review the [GraphQL docs](https://graphql.org/learn/), specifically the [queries](https://graphql.org/learn/queries/) and [mutations](https://graphql.org/learn/mutations/) pages.
API testing is mainly done through the [Apollo GraphQL Sandbox](https://www.apollographql.com/docs/apollo-sandbox) available at `http://localhost:8080/api/graphql` when the backend container is running. While the UI is helpful for creating queries for you, it is highly recommended to review the [GraphQL docs](https://graphql.org/learn/), specifically these pages:
- [schemas and types](https://graphql.org/learn/schema/)
- [queries](https://graphql.org/learn/queries/)
- [mutations](https://graphql.org/learn/mutations/)

0 comments on commit aab97f7

Please sign in to comment.