Add this to your Cargo.toml
to start using apollo-encoder
:
```toml
[dependencies] apollo-encoder = "0.1.0" ```
Or using [cargo-edit]:
bash
cargo add apollo-encoder
```rust use apolloencoder::{Schema, Field, UnionDef, EnumValue, Directive, EnumDef, Type}; use indoc::indoc;
let mut schema = Schema::new();
// Create a Directive Definition. let mut directive = Directive::new("provideTreat".tostring()); directive.description(Some("Ensures cats get treats.".tostring())); directive.location("OBJECT".tostring()); directive.location("FIELDDEFINITION".tostring()); directive.location("INPUTFIELDDEFINITION".tostring()); schema.directive(directive);
// Create an Enum Definition let mut enumty1 = EnumValue::new("CatTree".tostring()); enumty1.description(Some("Top bunk of a cat tree.".tostring())); let enumty2 = EnumValue::new("Bed".tostring()); let mut enumty3 = EnumValue::new("CardboardBox".tostring()); enumty3.deprecated(Some("Box was recycled.".to_string()));
let mut enumdef = EnumDef::new("NapSpots".tostring()); enumdef.description(Some("Favourite cat\nnap spots.".tostring())); enumdef.value(enumty1); enumdef.value(enumty2); enumdef.value(enumty3); schema.enum(enumdef); // Union Definition let mut uniondef = UnionDef::new("Cat".tostring()); uniondef.description(Some( "A union of all cats represented within a household.".tostring(), )); uniondef.member("NORI".tostring()); uniondef.member("CHASHU".tostring()); schema.union(uniondef);
asserteq!( schema.finish(), indoc! { r#" "Ensures cats get treats." directive @provideTreat on OBJECT | FIELDDEFINITION | INPUTFIELDDEFINITION """ Favourite cat nap spots. """ enum NapSpots { "Top bunk of a cat tree." CatTree Bed CardboardBox @deprecated(reason: "Box was recycled.") } "A union of all cats represented within a household." union Cat = NORI | CHASHU "# } ); ```
Licensed under either of
at your option.