blob: 5187a62bdd5772341637fbb5547ebf44c2b69e49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# `graphql-api`
GraphQL access to The Senpy API!
## Example Query
Try it out at [graphql.senpy.club/playground](https://graphql.senpy.club/playground)!
```graphql
query {
random: random {
language
image
}
me: me {
ip
}
languages
language: language(language: "C")
boys: boys {
random: random {
language
image
}
me: me {
ip
}
languages
language: language(language: "C")
}
}
```
## License
[MIT License](./LICENSE)
|