diff options
| -rw-r--r-- | src/routes/api.svelte | 8 | ||||
| -rw-r--r-- | src/routes/index.svelte | 32 |
2 files changed, 30 insertions, 10 deletions
diff --git a/src/routes/api.svelte b/src/routes/api.svelte index e377783..7c5a231 100644 --- a/src/routes/api.svelte +++ b/src/routes/api.svelte @@ -45,6 +45,14 @@ SPDX-License-Identifier: GPL-3.0-only --> <a href="https://api.senpy.club" target="_blank">https://api.senpy.club</a>. </p> + <p> + The Senpy Club API can also be accessed through GraphQL: + <a href="https://github.com/senpy-club/graphql-api" target="_blank"> + GitHub + </a>, + <a href="https://graphql.senpy.club/playground">Playground</a> + </p> + {#if !complete} <p>Fetching API README...</p> {:else} diff --git a/src/routes/index.svelte b/src/routes/index.svelte index e178912..d8e550e 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -56,24 +56,36 @@ SPDX-License-Identifier: GPL-3.0-only --> <p>Check out these other [The] Senpy Club-related projects!</p> <ul> <li> - <a href="https://github.com/senpy-club/api-worker">API</a> — The Senpy - Club API + <a href="https://github.com/senpy-club/api-worker" target="_blank">API</a> + — The Senpy Club API </li> <li> - <a href="https://github.com/senpy-club/frontend-next">Frontend</a> — - You are here! + <a href="https://github.com/senpy-club/frontend-next" target="_blank"> + Frontend + </a> — You are here! </li> <li> - <a href="https://github.com/senpy-club/cli">CLI</a> — Access The Senpy - Club API from your terminal! (and export it to files too!) + <a href="https://github.com/senpy-club/cli" target="_blank">CLI</a> — + Access The Senpy Club API from your terminal! (and export it to files too!) </li> <li> - <a href="https://docs.rs/senpy"><code>senpy-rs</code></a> — Access - The Senpy Club API from <a href="https://www.rust-lang.org/">Rust</a>! + <a href="https://docs.rs/senpy" target="_blank"><code>senpy-rs</code></a> + — Access The Senpy Club API from + <a href="https://www.rust-lang.org/">Rust</a>! </li> <li> - <a href="https://docs.rs/senpy-ffi"><codE>senpy-ffi</codE></a> — Access - The Senpy Club API from any programming language! + <a href="https://docs.rs/senpy-ffi" target="_blank"> + <code>senpy-ffi</code> + </a> + — Access The Senpy Club API from any programming language! + </li> + <li> + <a href="https://github.com/senpy-club/graphql-api" target="_blank"> + GraphQL API + </a> + — GraphQL access to The Senpy Club API! (<a + href="https://graphql.senpy.club/playground">Playground</a + >) </li> </ul> </section> |