GraphQL
- Introduction to GraphQL
- GraphQL Best Practices
- GraphQL on
bestofjs.org
- GraphQL on
Queries I Like¶
GitLab GraphQL API¶
Using the GitLab GraphQL API, let's get all of the snippets for a particular user:
query {
user(username: "tanuki") {
snippets(visibility: public) {
edges {
node {
id
title
rawUrl
}
}
}
}
}