#graphql #graphql-client #cynic #query #proc-macro #type #first

macro cynic-proc-macros

Procedural macro crate for cynic - a code first GraphQL client for Rust

55 releases (29 stable)

3.4.3 Jan 22, 2024
3.3.0 Nov 14, 2023
3.2.2 Jun 26, 2023
2.2.8 Mar 3, 2023
0.7.0 Jun 23, 2020

#2245 in Rust patterns

Download history 7754/week @ 2023-11-23 6173/week @ 2023-11-30 6320/week @ 2023-12-07 5461/week @ 2023-12-14 5011/week @ 2023-12-21 5061/week @ 2023-12-28 9703/week @ 2024-01-04 9043/week @ 2024-01-11 9493/week @ 2024-01-18 12190/week @ 2024-01-25 10513/week @ 2024-02-01 10259/week @ 2024-02-08 10325/week @ 2024-02-15 8898/week @ 2024-02-22 8511/week @ 2024-02-29 6746/week @ 2024-03-07

36,130 downloads per month
Used in 50 crates (via cynic)

MPL-2.0 license

330KB
9K SLoC

Cynic

A bring your own types GraphQL client for Rust

Crate Info API Docs Discord Chat

Documentation | Examples | Changelog

Overview

Cynic is a GraphQL library for Rust. It's not the first but it takes a different approach from the existing libraries.

Existing libraries take a query first approach to GQL - you write a query using GraphQL and libraries use that to generate Rust structs for you using macros. This is really easy and great for getting going quickly. However, if you want to use structs that aren't quite what the macros output you're out of luck. Some more complex use cases like sharing structs among queries are also commonly not supported.

Cynic takes a different approach - it uses Rust structs to define queries and generates GraphQL from them. This gives you freedom to control the structs you'll be working with while still enjoying type safe queries, checked against the GraphQL schema. When its built in derives don't do exactly what you want it provides lower level APIs to hook in and fetch the data you want in the format you want to work with it.

Of course writing out all the structs to represent a large GraphQL query can be quite challenging, and GraphQL has excellent tooling for building queries usually. Cynic provides querygen to help with this - you write a GraphQL query using the existing GQL tooling and it'll generate some cynic structs to make that query. You can use this as a starting point for your projects - either adding on to the rust structs directly, or re-using querygen as appropriate.

Features

Cynic is currently a work in progress, but the following features are supported:

  • Typesafe queries & mutations.
  • Defining custom scalars.
  • Building dynamic (but still type checked) queries at run time.
  • Query arguments including input objects
  • Interfaces & union types
  • Introspection via cynic-cli or cynic-introspection
  • GraphQL Subscriptions via graphql-ws-client. (though graphql-ws-client is fairly alpha quality)

The following features are not yet supported, though should be soon (if you want to help out with the project I'd be happy for someone else to try and implement these - if you open an issue I'd be happy to give pointers on how to go about implementing any of them)

  • Directives
  • Potentially other things (please open an issue if you find anything obviously missing)

Documentation

Cynic is documented in a few places:

  1. There's a guide to using cynic on cynic-rs.dev
  2. The reference documentation on docs.rs

Inspiration

  • graphql-client, the original Rust GraphQL client. This is a great library for using GraphQL from Rust. It wasn't quite what I wanted but it might be what you want.
  • The idea of encoding the GraphQL typesystem into a DSL was taken from elm-graphql.
  • Most of the JSON decoding APIs were taken from Json.Decode in Elm.
  • Deriving code from structs is a fairly common Rust pattern, though serde in particular provided inspiration for the derive APIs.

lib.rs:

Procedural macros for cynic

Dependencies

~2.5–3.5MB
~69K SLoC