bluejay-typegen-codegen 0.4.0

Code generation utilities for `bluejay-typegen-macro`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod error;
mod fragment_and_operation_names_do_not_clash;
mod paths_with_custom_scalar_type;
mod selections_are_valid;

use error::Error;
use fragment_and_operation_names_do_not_clash::FragmentAndOperationNamesDoNotClash;
use selections_are_valid::SelectionsAreValid;

pub(crate) type Rule<'a, E, S> = (
    SelectionsAreValid<'a, E, S>,
    FragmentAndOperationNamesDoNotClash<'a, E, S>,
);

pub(crate) use paths_with_custom_scalar_type::PathsWithCustomScalarType;