All notable changes to this project will be documented in this file.
The format is roughly based on Keep a Changelog.
This project adheres to Semantic Versioning.
- MSRV is now 1.76
- Added
OperationBuilder::build_with_variables_inlined
which can be used to build a query string with variables inlined (#1012) - Added
QueryVariableLiterals
, a trait & derive macro that can be used to enable dynamic fetching of variables (#1009)
- The generator now consistently renames arguments that share names with rust keywords (#1005)
- The generator will no longer panic when using a fragment with an interface as its type condition (#994)
- Tidied up the output of object & list literals in the clients GraphQl output.
- update Cargo.toml dependencies
- update rust crate trycmd to 0.15 (#971)
- Pulled in the latest cynic-parser, this should have no user facing impact.
- Schema file should no longer cause clippy warnings if
clippy::nursery
is on. (#951)
v3.7.0 - 2024-04-28
- Users of the
reqwest
integration can now control the type used for error extensions (#928)
- MSRV is now officially 1.72 (although it was unofficially 1.72 before)
v3.6.1 - 2024-04-15
- Fixed a regresion in 3.6.0: schemas with directives on the
schema
definition will now parse
3.6.0 - 2024-04-12
- Fixed an issue where
derive(Scalar)
would fail on types with aserialize
function that was notserde::Serialize::serialize
(#909)
- Improved errors when users use a derive on the wrong kind of GraphQL type (#889)
cynic-codegen
now usescynic-parser
instead ofgraphql-parser
(#824)
Operation
is nowDebug
whenVariables
isDebug
- Updates reqwest to 0.12 - this is breaking for users of the
http-reqwest
orhttp-reqwest-blocking
features who will need to upgrade to reqwest 0.12. - Fixed some unused code warnings
- Handle disabled introspection better in
cynic-introspection
&cynic-cli
. This is technically a breaking change, but it's small and fixes a bug so I'll allow it.
- If you accidentally write a recursive query without the
recurse
attribute you'll now get a panic suggesting to userecurse
. This may cause false positives if you're writing a particularly large query - users should raise an issue if I've picked a number that's too low.
- The
recurse
attribute now works if anInlineFragments
derive is used in the recursive path.
- Fixed an issue with object literals inside arguments
Enum
s can now opt out of exhaustiveness checking with thenon_exhaustive
attribute
cynic-introspection
now omits the{}
if a definition is empty.
GraphQlResponse
is nowClone
provided its contents are also
- Fixed an issue where
#[cynic(flatten)]
would not work on scalar fields.
- The
QueryVariables
derive now supportsskip_serializing_if
cynic-cli
has a newquerygen
command as an alternative to the web-based generator (Note: this is experimental and may be subject to change)
- Operations generated by cynic will now omit un-used variables
- The
#[cynic(spread)]
attribute now outputs an inline fragment in GraphQL
- Using
#[cynic(spread)]
more than once no longer results in rust compile errors. - The generator won't output an incorrect comma in between attributes in certain circumstances.
- The generator now uses the same re-casing as codegen - leading to less bugs.
- The generator will now rename more QueryFragment fields that require it.
cynic-introspection
now escapes deprecated strings that require it in SDL.
- Various SDL output fixes in
cynic-introspection
:- It no longer prints
?
where it means!
- It omits the schema definition if all the root operation types are using default names
- Enum values no longer have empty lines between them
- We no longer erronously print the
Boolean
scalar - Fields now have a hacky heuristic that decides when to wrap them
- Unions also have a wrapping heuristic
- Deprecation reasons will now correclty be wrapped in strings
- It no longer prints
- Building binaries with different GitHub action
- Added support for introspecting the
specifiedByUrl
field of scalars on servers supporting GraphQL 2021 cynic-introspection
can now output SDL- Added
CapabilitiesQuery
tocynic-introspection
, which can detect which version of the GraphQL specification a server supports. QueryFragment
now allows users to specify features for parts of the query, allowing the same query to be used on servers with differing capabilities.- Added
cynic-cli
, a CLI for cynic that can introspect remote servers.
- Fixed an issue where
InlineFragments
fallbacks would fail to decode if the data contained anything other than just the__typename
. - Inline fragment variants containing smart pointers should now decode correctly.
- Added an
exhaustive
attribute forInlineFragments
on union types. If present this attribute will cause compile errors if the enum is missing a variant for any union member.
- The generator no longer outputs a broken
#[cynic::schema]
module. impl_scalar!
andderive(Scalar)
can now be used on built in scalars.- GitHub schema registration is now slightly faster
- Fixed a bug where suggestions in errors were non-deterministic.
- Fixed the names of some features in docs.rs output.
- Added MSRV to
Cargo.toml
- Fix
Variable
definition forVec<T>
in#[cynic::schema]
output.
- Fixed some more corner cases in string literal escaping
- Schema registration no longer parses schemas twice when rkyv is enabled.
- Fixed input type validation to better support skipping
Option
wrapping
See the upgrade guide in the book for help upgrading.
QueryBuilder
,MutationBuidler
&SubscriptionBuilder
no longer have lifetimes.QueryFragment
no longer has a lifetime.QueryVariables::Fields
must now implement theQueryVariablesFields
trait.- The workings of
derive(QueryVariables)
has been changed quite significantly, but shouldn't affect anyone who is using the macro. - The various cynic derives now expect the crate to be in scope under the name
cynic
. This hopefully shouldn't affect most users but may do so if you were doing something unusual.
- Added
cynic-introspection
for running an introspection query against a remote server. - Added
cynic-introspection::Schema
which converts the introspection output into a friendlier format for working with. - The derive macros now support structs that are generic on lifetimes and types.
- The derive macros now fields that are references.
- The derive macros now support fields that are references.
- Added
cynic_codegen::register_schema
, a mechanism for pre-registering schemas with cynic. - Added a
schema
attribute macro to declare the schema module for pre-registered schemas. - Added the
rkyv
feature flag which optimises the pre-registered schemas with therkyv
library. This makes cynic much more efficient when working with large schemas. - The
Enum
derive now supports fallback variants - Added
Operation::new
to allowOperation
to be used in tests.
- Cynic now uses operationName when one is provided by the top-level QueryFragment
- QueryFragments now provide the name of the struct to use as operationName
- Fixed an issue deserializing recursive fields that hit their recurse depth.
- Response deserialization will no longer work on random blobs of JSON that aren't in GraphQLResponse format.
cynic_codegen::output_schema_module
is now deprecated in favour ofregister_schema
.
- Removed the deprecated
FragmentArguments
derive. - Removed the deprecated
arugment_struct
attribute.
GraphQlErrorLocation
&GraphQlErrorPathSegment
are no longer accidentally private.
- You no longer have to specify the
Extensions
parameter onGraphQLError
if you don't have any extensions.
- A QueryFragment used inside an InlineFragment can now have a
__typename
field.
- The macro generated code now compiles under
-D rust-2018-idioms
- Fix an issue where you'd get extremely weird compiler errors if your
QueryFragment
had fields namedkey
ormap
.
- The generator and derive macros are now aware of the implicit
__typename
that every object & interface type gets. - Fixed support for support fields with one or more leading underscores in the derives. This would have been possible before but only by using a rename attribute.
- Fixed a compilation error when targeting wasm with the
http-reqwest
feature enabled.
- Exposed the
StreamingOperation
type which was accidentally not exported in the move tov2.0
.
- The
use_schema
output has been re-organised to reduce the chances of clashes. This is technically a breaking change, but only if you're writing queries by hand rather than using the derives.
InlineFragments
derives for union types now allow a fallback that receives the__typename
schema_for_derives
no longer ignoresQueryVariables
structs.- A slight improvement on the error spans if you refer to a missing variable in some QueryFragment arguments.
- Some of the derives weren't recasing GraphQL types/fields correctly, leading to weird errors.
- Scalars defined using
impl_scalar!
couldn't be used as variables. Now they can.
This release contains a lot of breaking changes.
See the upgrade guide for help
- Cynic no longer supports providing variables via the
arg.X
syntax. Instead you should provide variables similar to how you would do in a GraphQL query:#[arguments(someArg: $my_variable)]
, wheremy_variable
is a field on yourQueryVariables
struct. - Arguments should be provided with the casing of the GraphQL schema rather
than
snake_casing
them. - Cynic now derives
serde::Serialize
andserde::Deserialize
where appropriate so you can no longer do this yourself on structs you are using with cynic. - Decoding GraphQLResponses should now be done directly with serde using a
decode_response
function on the operation (unless you're using anhttp
extension trait, which will deal with this for you). Operation
has changed:- It no longer has a lifetime.
- It is now generic over the arguments type.
- The
http
extension traits have had their signatures changed to accommodate the new signature ofOperation
. Their use should still be the same. - An
Enum
can no longer be shared between schemas. If you were doing this, you should define twoEnum
s and provide conversion functions between the two of them. InlineFragments
now always require a fallback and no longer perform exhaustiveness checking.QueryBuilder
,MutationBuilder
andSubscriptionBuilder
no longer have aResponseData
associated type.QueryBuilder::build
,MutationBuilder::build
andSubscriptionBuilder::build
now take their argument by value not by reference.- The
surf
,reqwest
&reqwest-blocking
features have been renamed tohttp-surf
,http-reqwest
&http-reqwest-blocking
respectively. - The
http-reqwest
feature no longer uses thenative-tls
feature. Users should enable one of thetls
features ofreqwest
themselves. - The
surf-h1-client
,surf-curl-client
,surf-wasm-client
,surf-middleware-logger
&surf-encoding
features have been removed. If users want to enable these features in surf they should do it in their ownCargo.toml
. cynic
no longer re-exportsserde_json
- The
GraphQlError
&GraphQlResponse
structs no longer contain aserde_json::Value
for extensions. They now have generic parameters that you should provide if you care about error extensions. - The output of the
use_schema
macro is no longer re-cased. - The deprecated
query_module
attribute for the various derive/attribute macros has been removed - if you're using it you should update toschema_module
which behaves the same.
- The
FragmentArguments
trait & derive has been renamed toQueryVariables
- The
argument_struct
attribute forQueryFragment
andInlineFragments
has been deprecated in favour ofvariables
- Fixed a case where the generator would output the incorrect casing for some occurrences of a custom scalar in the output (#346)
- Cynic should now support schemas which have 2 similarly named but differently cased scalars.
- Cynic should no longer fail to compile in the face of various non-breaking schema changes.
#[cynic(flatten)]
no longer allows you to omit a list type on output fields. Previously this would compile but probably fail to deserialize.- Non-nullable arguments & input object fields with defaults are no longer considered required
- Cynic now supports a new syntax for arguments:
#[arguments(someArg: {"someField": 1})]
cynic
no longer usesinflector
to re-case things. Hopefully this won't cause any regressions, but if it does please raise an issue.InlineFragments
now take their expected typenames from theQueryFragment
inside their variants, rather than from the name of the variants themselves.- Queries output by cynic may have more literals in the GraphQL query string than they had in previous versions of cynic. Though the end result should be the same.
use_schema
output can now live in a separate crate from queries, which should help with large schema support. (The exception isimpl_scalar
invocations which must live in the same crate as the schema)- Cynic now allows fields to be
Arc
orRc
- The generator no longer outputs input types that are provided in argument literals, as these are no longer used in the generated code.
- The
CynicReqwestError
enum (behind thereqwest
&reqwest-blocking
feature flags) has a new variant to handle non 2XX responses from servers. - Removed the
GraphQlResult
&PossiblyParsedData
types (which weren't being used) - Removed the following deprecated things:
query_dsl!
, thequery_module
module attribute, theGraphQLError
,GraphQLResponse
,GraphQLErrorLocation
&GraphQlErrorPathSegment
type aliases.
- The
InlineFragments
derive now supports a rename attribute on variants
- The
QueryFragment
derive now supports fields with types that take generic parameters directly, e.g.DateTime<Utc>
from chrono. Previously this would have required a type alias to hide the generic parameters from cynic.
- The various HTTP client integrations will now return HTTP error details and the full body on non 2XX responses that don't contain a valid GraphQL response. Previously they would have tried to decode the response as GraphQL and returned the error from that operation.
New generator features, so I'm putting them out in a point release:
- Querygen now supports inline fragments on union types & interfaces.
- Querygen now supports subscriptions
- Querygen no longer duplicates variable names in generated
ArgumentStruct
s when an argument is used twice in a query. - Fixed support for
Float
scalars in the generator. - Fixed support for fields named
self
,super
etc. which can't be made into raw identifiers.
- Removed the no longer used
chrono
feature. It didn't enable any code so downstreams shouldn't really be broken by this (other than a possibleCargo.toml
tweak)
- Cynic now supports GraphQL field aliases. These can be requested, but will also automatically be added to queries if any QueryFragment requests the same field twice.
- The generator also now supports field aliases.
- Fixed a case where the generator would not generate
InputObjects
that it should have been generating, if thoseInputObjects
were arguments to a leaf field.
- Disabled the heavyweight feature of inflector, which should make it (and therefore cynic) a lighter dependency.
InputObject
now serializes fields in a stable order.
- You can now
spread
aQueryFragment
into anotherQueryFragment
with the#[cynic(spread)]
field attribute. - The
QueryFragment
derive now supports renaming fields.
- Underscore field names are now supported in schemas and for querying.
- Field names with leading underscores will no longer have those leading underscores removed.
This release is only of the cynic
crate - other crates remain at 0.13.1
- This fixes a problem with JSON decoding that made it extremely inefficient (particularly on larger responses). In my benchmarking this improves decoding performance 10x.
- Fixes an issue where cynic would incorrectly case module certain names in the
use_schema
output
There are a number of breaking changes here, though they shouldn't require too much work for users to update. An example of an upgrade can be found here.
- The
cynic::Scalar
derive has some new requirements:- You should now derive (or otherwise implement)
serde::Serialize
for your Scalar types. - The derive now requires a
schema_module
parameter. Theschema_for_derives
macro will automatically insert this (if you're using it) but you may need to adduse super::schema;
to ensure it's in-scope. - The derive now has an optional
graphql_type
parameter. This is required if the name of your type and the name of the scalar in the schema differ.
- You should now derive (or otherwise implement)
- Scalars have been revamped:
- The scalar trait now has a typelock. This means that a Scalar impl is now
directly tied to the scalar definition in a given
query_dsl
. - As a result, cynic can no longer define generic Scalar impls for 3rd party
types (such as
chrono
,url
,uuid
etc.). Theimpl_scalar
macro has been provided to allow users to use these types (or any type that isserde::Serialize
) in their queries. - Cynic no longer requires you to define Scalar types you are not using.
select
functions generated for scalar fields inquery_dsl
now take a selection_set that decodes the scalar type. This gives some flexibility around scalar types.query_dsl
now defines markers for all the scalar types. As such you should not import any custom scalars into your query_dsl module.
- The scalar trait now has a typelock. This means that a Scalar impl is now
directly tied to the scalar definition in a given
- Required scalar arguments no longer have concrete types, so anything
that relied on type inference (i.e.
arg = "hello".into()
) will no longer work. You should either call an explicit function, or rely on aInputType
impl to do the conversion. - The
uuid
,chrono
,bson
, andurl
features have been retired. If you were using these you should register them asScalar
with theimpl_scalar!
macro. SerializableArgument
has been retired in favour of just usingserde::Serialize
.- The return type of
cynic::Enum::select
now includes theTypeLock
of the enum. This should only affect users that were implementingcynic::Enum
directly. Users of the derive should be unaffected. IntoArgument
has been removed in favour of the newInputType
trait.cynic::SerializeError
no longer exists.
- Support for building and decoding subscription queries.
- Alpha quality support for subscriptions over websockets with
graphql-ws-client
.
GraphQLError
,GraphQLResponse
, &GraphQLResult
have all been deprecated in favour ofGraphQlError
,GraphQlResponse
, &GraphQlResult
. The types are otherwise the same, just with different names.query_dsl!
has been deprecated in favour of a similar macro nameduse_schema!
- It's now recommended that you name your
query_dsl
moduleschema
instead. cynic_codegen::output_query_dsl
is now namedcynic_codegen::output_schema_module
.- The
query_module
attribute macro has been deprecated in favour ofschema_for_derives
- The
query_module
parameter to the derives has been deprecated in favour ofschema_module
.
- Cynic will now fail to compile you when you use an incorrect enum type for a field in a QueryFragment.
- Field type mismatch errors in QueryFragments are now reported on the span of the field type.
- You no longer need to define Scalars you are not using
- If a server adds a new scalar it will no longer break cynic clients.
- Fixed a case where InputObject errors were being shown against the
query_module
attr of the module they were defined in.
- The
graphql_type
parameter for most of the derives is now optional. It defaults to the name of the struct/enum if not present. - Cynic will no longer generate invalid QueryFragments if fields are not selected on a composite.
- Cynic will now error if a QueryFragment selects no fields.
- The
cynic::Scalar
derive output no longer contains a spurious?
that clippy warns about in Rust 1.51.
- Hopefully fixed the build of documentation for docs.rs
chrono::NaiveTime
now supports times without seconds (e.g.10:30
)- Failures to parse chrono types now provide error messages that mention chrono: these were fairly hard to diagnose before.
- The generator no longer prints out an empty types module when there are no custom scalars.
selection_set::inline_fragments
now takes a backup selection set parameter for when we get an unexpected__typename
.- The
InlineFragments
derive now performs exhaustiveness checking and validates the provided variants. InlineFragments
has a new required functionfallback
InlineFragments
are now validated for exhaustiveness & correctness.InlineFragments
now support a fallback variant for the case where users only care about some of the possibilities.QueryFragment
can now be derived for interfaceschrono::NaiveTime
is now supported as a Scalar when thechrono
feature is active- Cynic errors will now suggest possible fixes when you mis-spell or mis-name a type in your code.
- Updated reqwest dependency to 0.11
- Optional InputObject arguments can now be provided by reference. Previously this required a clone.
- The generator no longer panics if it can't find the root type of a schema.
- The generator no longer tries (and fails) to run queries when it has no URL to work with.
- Makes sure docs.rs builds documentation for the HTTP client code.
QueryFragment::fragment
now accepts aFragmentContext
rather than arguments. This change was necessary to support recursive queries.- It is no longer recommended to use
QueryFragment::fragment
directly - instead an Operation should be constructed withQueryBuilder::build
orMutationBuilder::build
. Note that these return anOperation
so you no longer need to construct one manually. - GraphQL fields with names that match rust keywords will no longer be
postfixed with a
_
- you should now use a raw identifier (or rename) for these fields. - Derived
Enums
now default torename_all = "SCREAMING_SNAKE_CASE"
if not provided. To revert to the old behaviour you should explicitly provide "None" - Derived
InputObjects
now default torename_all = "camelCase"
if not provided. To revert to the old behaviour you should explicitly providerename_all = "None"
- Removed the
kebab-case
&SCREAMING-KEBAB-CASE
rename_all
rules - fairly sure kebab case is not valid in GraphQL so this shouldn't affect much.
- Cynic now supports recursive queries via the
#[cynic(recurse="N")]
attribute on fields that recurse. - The generator now understands query fragments, spreads and inline fragment spreads. Inline fragments for interface/union types are not yet supported.
- Interfaces can be queried via
#[derive(InlineFragments)]
on an enum. - Added support for using chrono::NaiveDate as scalars. The decode/encode
functions will convert to/from dates in the ISO 8601 format, that is
YYYY-MM-DD
- Added
QueryBuilder
&MutationBuilder
traits for constructing Operations from QueryFragments.
- The generator (and therefore the generator tests) should now work when run on windows.
- Paths output as part of generator are now all raw strings, so should support windows path separators.
- The generator now correctly wraps literal ID parameters with
cynic::Id::New
- Cynic derives (and cynic itself) no longer emit clippy warnings (on 1.48 at least)
- We now support raw identifiers in QueryFragment derives, useful for fields
named
type
or similar. - The generator now correctly renames InputObject fields & Enum variants if the
default
rename_all
doesn't work for them. - The
InputObject
derive no longer looks up scalars insidequery_dsl
(which required them to bepub use
d inquery_dsl
). - The generator is now context aware with argument values, and does a better job of figuring out whether to clone or take by reference.
- The generator is now a lot more thorough, it:
- Deduplicates generated types
- Supports multiple queries, sharing structs between all the generated queries as appropriate.
- Generates unique names for each struct it creates, even when faced with different structs targeting the same type.
- Generates partial InputObjects when faced with literals with missing fields (previously it would generate all fields even when unused)
- Correctly generates different argument structs if a single type with arguments is used in multiple queries. Though the correct IntoArgument impl is not yet generated.
- The generator now generates scalars with public fields
- The generator now derives
Clone
on scalars as certain positions they can appear in require cloning - The generator now outputs correct Rust code when faced with queries that rely on list coercion.
rename_all
attribute is no longer case sensitive.- Improved the docs for attributes in the book
- Implemented SerializableArgument for the various scalars in the
integrations
folder. This was preventing them actually being used as scalars in input contexts.
QueryFragment::fragment
andInlineFragment::fragments
now accept their Argument parameters by reference.define_into_argument_for_scalar
has been renamed toimpl_into_argument_for_options
- There's no longer a blanket impl of
SerializableArgument
for anyScalar
.SerializableArgument
now needs to be implemented on eachScalar
. There's aimpl_serializable_argument_for_scalar
macro that does this. TheScalar
derive automatically calls this macro, so this is only a change if you have a customScalar
- The
IntoArgument
trait now has anOutput
associated type that is used for the return value ofIntoArgument::into_argument
- The
InputObject
derive no longer complains if you omit optional fields. The old behaviour can be brought back by attaching arequire_all_fields
annotation to the InputObject. - SerializeError now requires Send + Sync on it's boxed value.
- The
bson
feature, which allows to use ObjectId in schemas, added. - The
uuid
feature, which allows to use Uuid in schemas, added. - The
url
feature, which allows to use Url in schemas, added. InputObject
s may now contain fields inside aBox
. This allows for recursiveInputObject
types.- The
surf
feature enables integration with thesurf
HTTP client, so users don't have to write it themselves. - The
reqwest
&reqwest-blocking
features, which add support for thereqwest
HTTP client. - Optional fields on an InputObject may now be annotated with
skip_serializing_if="path"
, similar to serde. This allows users to omit fields from InputObjects under certain circumstances. - All optional fields of the GraphQLError type are now modeled according to the
spec, including the
extensions
field, which is expressed as anOption<serde_json::Value>
.
- A
SerializableArgument
no longer needs to be'static + Send
. FragmentArguments
&InputObject
s no longer need to beClone
.
- InputObject no longer has a serialize method - this is now handled by a SerializableArgument impl instead, which is generated by the InputObject derive.
Query
has been renamed toOperation
to make it clear it's used for both queries & mutations.Query::new
is nowOperation::query
- InputObjects can now be derived and will be generated by querygen.
- Querygen output is now tested more thoroughly - should be less changes required by users just to get it to compile.
- Cynic now supports running & generating code for mutations.
- Removed the
optimised_query_modules
feature from codegen, as it involved more code than it was worth to keep it around. Functionally this should make no difference, though it may change performance characteristics of compiling cynic code. Didn't seem to make a significant difference when I was using it though.
- Fixed a compile issue in the generated
query_dsl
for schemas with fields with > 1 required argument. - Fixed an issue that required users to add
serde_json
to their dependencies. We now re-export it ascynic::serde_json
and use that in our derive output. - querygen now adds
rename_all="SCREAMING_SNAKE_CASE"
to Enums by default - the GQL convention is to have them in this format and querygen was already doing the transformation into thePascalCase
rust usually uses so this should make things more likely to work by default. - Removed fontawesome from the querygen HTML. Think I added this along with bulma but it's not being used, and adds 400kb to the payload.
- Fixed a bug where querygen would not snake case field names when generating
QueryFragment
s. - querygen will now take references to arguments rather than ownership (which didn't work for most non-enum types).
- Fixed an issue where querygen was adding ID literals as Strings in arguments, rather than IDs.
- Integer fields are now i32 rather than i64 inline with the GraphQL spec. If larger integers are required a custom scalar should be used.
- The
cynic_arguments
attribute for passing arguments to GraphQL fields is now namedarguments
- querygen-web now incorporates graphiql & graphiql explorer, to make testing & building queries easier.
- querygen now supports bare selection sets, they're assumed to be queries. Quite easy to create these in GraphiQL/GraphqlExplorer, and they work for queries so seemed important.
- Arguments are now converted using the
IntoArgument<T>
trait - default conversions are provided forOption
and reference types, so users don't always have to wrap Options inSome
or explicitly clone their arguments. - As a result of the above, cynic will no longer stop compiling when a schema changes a required argument to optional.
- Fixed an issue with cynic-querygen where it guessed the name for the root of a query and crashed out if it was wrong (which was often).
- Fixed an issue where querygen would fail if given a query with a hardcoded enum value (#33)
- Integers are now i32 rather than i64, inline with the GraphQL spec. If larger integers are required a custom scalar should be used.
- Querygen now puts
argument_struct
attrs on types that have arguments rather than just types that have children with arguments. (#37) - Fixed an issue where querygen would use the name of the query as the
graphql_type
on the root struct of named queries. - Fixed a bunch of broken links in the book.
SerializableArgument
s are now required to beSend
. Found this was required for using cynic in an async context. May revisit at some point to see if it's 100% required.
cynic::Id
now derives PartialEq, Hash & Eq- Added
cynic::Id::new
function
- Using a
query_module
should no longer cause errors on an individual derive to be attributed to thequery_module
span - the error information should now be associated with the derive it originated from. - Fixed some dead code warnings in the selection builders output by query DSL
Query::body
no longer exists, theQuery
itself is now directly serializable, and exposes thequery
type itself. Errors that were previously exposed byQuery::body()
will now be surfaced when serializing a Query.Argument::new
has been updated to take aSerialiableArgument
itself.- Removed
selection_set::Error
. SerializableArgument::serialize
&Scalar::encode
now returnBox<std::error::Error>
errors rather than()
cynic-codegen
will now build with the rustfmt feature disabled.- Removed some unwraps that I lazily put in and forgot to remove.
schema_path
parameters are now relative toCARGO_MANIFIEST_DIR
rather than the current working directory. This fixes an issue with cargo workspace projects where doc-tests would be relative to the sub-crate but cargo builds were relative to the workspace root. For projects not using workspaces this will probably make no difference- The
query_dsl
has been reworked. Before each field with arguments had one or two structs: one for optional arguments & one for required arguments, and these were passed to the selector function before the selection set argument. Now each selector function takes the required arguments, and then returns a struct that follows the builder pattern to allow for optional arguments to be added. This fixes a few issues and is a bit more ergonomic.
- Fixed a bug where any type used as an optional argument needed to implement
Default. This was fixed by the
query_dsl
rework. - Fixed a bug where optional arguments that were enums or interfaces had to be
provided or type inference problems occurred. This was also fixed by the
query_dsl
rework.
- Added chrono::DateTime scalar support behind a chrono feature flag.
- The
cynic::selection_set
module and all it's contents are now documented. QueryBody
now exposes it's arguments & query fields for greater flexibility (and use in snapshot testing etc.)
- Generated
query_dsl
now disables unused import warnings where appropriate. - Exposed
Id::inner
&Id::into_inner
functions - these were meant to be public but were not - Cleaned up a ton of compiler warnings - mostly unused imports and a few unused variables
query_dsl
addsallow(dead_code)
annotations so we don't get tons of dead code warnings when we're not exercising an entire schema.query_dsl
no longer creates mutableVec
for fields without arguments - this was leading to tons of "doesn't need to be mutable" warnings.ID
fields are now correctly given thecynic::Id
type inquery_dsl
- previously they were being forced to String.cynic::Id
is now acynic::Scalar
- Fixed an issue in
derive(QueryFragment)
where Enums inside lists would not be treated as Enums. DecodeError
now implementsstd::error::Error
- The generated
query_dsl
no longer contains generated enums - users should provide their own enums andderive(cynic::Enum)
on them. Cynic querygen can be used to help with this. - The generated
query_dsl
no longer contains generated input objects - users should provide their own structs andimpl cynic::InputObject
on them. A derive for this should be coming in the future.
- Union types can be queried via
#[derive(InlineFragments)]
on an enum. - Schemas that use interfaces are now supported, though interfaces are not yet queryable.
#[derive(QueryFragment)]
now explicitly checks for required/list type mismatches & other easy mistakes, and warns the user appropriately.- Added an
output_query_dsl
function suitable for running inside build.rs - Added a flatten option at the field level. When present this will flatten nested options & vectors into the provided type. Used to handle the common case in GQL where someone has defined an optional list of optionals. This is a pain in Rust, since the same thing can usually be represented by a non-optional list of non-optionals.
- Added a cynic-querygen for generating QueryFragment structs from a graphql schema & query. This currently has a WIP web interface and a WIP CLI, though neither of them are particularly user friendly at this point.
- Added a
cynic::query_module
attribute macro that can be applied to modules containing QueryFragments & InlineFragments. When this attribute is present the derive will be done for all QueryFragments & InlineFragments contained within. This allows users to omit some of the parameters these derives usually require, as thequery_module
attribute provides them and fills them in. These modules may be expanded in the future to provide more "intelligent" features. - Added support for mapN up to N = 50, therefore adding support for GraphQL objects with up to 50 fields.
- Added new
cynic::Enum
derive that matches up a Rust enum with a GraphQL enum.cynic-querygen
will automatically provide enums using this derive when a query includes an enum. - Added
SelectionSet::and_then
for chaining decode operations on selection sets. - Added
cynic::Scalar
derive for newtype structs so that users can easily define their own scalars. Also added support for this to cynic-querygen - Added
cynic::Id
type to handle Ids in queries. - Added
cynic::InputObject
trait to allow thequery_dsl
to handle InputObjects generically.
- Split the procedural macros out into their own cynic-proc-macros crate. cynic-codegen now exists as a re-usable library for programmatically doing the codegen.
- The IntoArguments trait is now named FromArguments and has had it's parameters switched up.
- Added a StarWars API example
- Now supports schemas that define their root query types. Before we just assumed there was a type called query.
- Fixed a few things that stop the examples in the documentation from compiling.
- Fixed all the tests
- We now use the correct case for non built-in scalar types
- Fixed an issue that prevented propagation of argument structs into inner QueryFragments
- No changes
- Some tweaks to the documentation.
- Initial release