1 unstable release
new 0.2.0 | Oct 29, 2024 |
---|
#9 in #queries
570KB
15K
SLoC
wasmer-backend-api
GraphQL API client for the Wasmer backend.
Development
This client is built on the cynic crate, a GraphQL client library that allows tight integration between Rust and GraphQL types.
It was chosen over other implementations like graphql-client
because it
significantly reduces boilerplate and improves the development experience.
The downside is that the underlying GraphQL queries are much less obvious when looking at the code. This can be remedied with some strategies mentioned below.
Consult the Cynic docs at cynic-rs.dev for more information.
Backend GraphQL Schema
The GraphQL schema for the backend is stored in ./schema.graphql
.
To update the schema, simply download the latest version and replace the local file.
It can be retrieved from https://github.com/wasmerio/backend/blob/main/backend/graphql/schema.graphql.
Writing/Updating Queries
You can use the Cynic web UI to easily create the types for new queries.
Simply upload the local schema from ./schema.graphql
and use the UI to build
your desired query.
NOTE: Where possible, do not duplicate types that are already defined, and instead reuse/extend them where possible.
This is not always sensible though, depending on which nested data you want to fetch.
Dependencies
~22–37MB
~612K SLoC