From 2766797184d4ff0155eaecd2285455e9e85bf99e Mon Sep 17 00:00:00 2001 From: Graeme Coupar Date: Sat, 30 Nov 2024 13:40:29 +0000 Subject: [PATCH] fix: support fields named str Fixes #1107 --- cynic-codegen/src/use_schema/fields.rs | 4 +- cynic-codegen/src/use_schema/input_object.rs | 2 +- cynic-codegen/src/use_schema/mod.rs | 2 +- cynic-codegen/src/use_schema/named_type.rs | 2 +- .../snapshots/use_schema__books.graphql.snap | 54 +- .../use_schema__graphql.jobs.graphql.snap | 1704 ++++++++--------- .../snapshots/use_schema__simple.graphql.snap | 52 +- .../use_schema__starwars.schema.graphql.snap | 902 ++++----- .../use_schema__test_cases.graphql.snap | 110 +- .../actual_schemas__test_cases__snapshot.snap | 10 +- schemas/test_cases.graphql | 9 + 11 files changed, 1461 insertions(+), 1390 deletions(-) diff --git a/cynic-codegen/src/use_schema/fields.rs b/cynic-codegen/src/use_schema/fields.rs index 0b827881f..af5cf2400 100644 --- a/cynic-codegen/src/use_schema/fields.rs +++ b/cynic-codegen/src/use_schema/fields.rs @@ -33,7 +33,7 @@ impl ToTokens for FieldOutput<'_> { impl cynic::schema::Field for #field_marker{ type Type = #field_type_marker; - const NAME: &'static str = #field_name_literal; + const NAME: &'static ::core::primitive::str = #field_name_literal; } impl cynic::schema::HasField<#field_marker> for super::super::#parent_marker { @@ -75,7 +75,7 @@ impl ToTokens for ArgumentOutput<'_> { impl cynic::schema::HasArgument<#argument_ident> for super::#field_marker { type ArgumentType = #schema_type; - const NAME: &'static str = #name; + const NAME: &'static ::core::primitive::str = #name; } }) } diff --git a/cynic-codegen/src/use_schema/input_object.rs b/cynic-codegen/src/use_schema/input_object.rs index 245c668d3..5d69d3d3c 100644 --- a/cynic-codegen/src/use_schema/input_object.rs +++ b/cynic-codegen/src/use_schema/input_object.rs @@ -68,7 +68,7 @@ impl ToTokens for FieldOutput<'_> { impl cynic::schema::Field for #field_marker { type Type = #field_type_marker; - const NAME: &'static str = #field_name_literal; + const NAME: &'static ::core::primitive::str = #field_name_literal; } impl cynic::schema::HasInputField<#field_marker, #field_type_marker> for super::super::#object_marker { diff --git a/cynic-codegen/src/use_schema/mod.rs b/cynic-codegen/src/use_schema/mod.rs index 97595afff..c32273199 100644 --- a/cynic-codegen/src/use_schema/mod.rs +++ b/cynic-codegen/src/use_schema/mod.rs @@ -56,7 +56,7 @@ pub(crate) fn use_schema_impl(schema: &Schema<'_, Validated>) -> Result { tokens.append_all(quote! { impl cynic::schema::NamedType for #target_struct { - const NAME: &'static str = #graphql_name; + const NAME: &'static ::core::primitive::str = #graphql_name; } }); } diff --git a/cynic-codegen/tests/snapshots/use_schema__books.graphql.snap b/cynic-codegen/tests/snapshots/use_schema__books.graphql.snap index 57da61ace..17b7a0aa8 100644 --- a/cynic-codegen/tests/snapshots/use_schema__books.graphql.snap +++ b/cynic-codegen/tests/snapshots/use_schema__books.graphql.snap @@ -1,6 +1,7 @@ --- source: cynic-codegen/tests/use-schema.rs expression: "format_code(format!(\"{}\", tokens))" +snapshot_kind: text --- impl cynic::schema::QueryRoot for QueryRoot {} impl cynic::schema::MutationRoot for MutationRoot {} @@ -12,19 +13,19 @@ pub struct MutationType {} pub struct QueryRoot; pub struct SubscriptionRoot; impl cynic::schema::NamedType for Book { - const NAME: &'static str = "Book"; + const NAME: &'static ::core::primitive::str = "Book"; } impl cynic::schema::NamedType for BookChanged { - const NAME: &'static str = "BookChanged"; + const NAME: &'static ::core::primitive::str = "BookChanged"; } impl cynic::schema::NamedType for MutationRoot { - const NAME: &'static str = "MutationRoot"; + const NAME: &'static ::core::primitive::str = "MutationRoot"; } impl cynic::schema::NamedType for QueryRoot { - const NAME: &'static str = "QueryRoot"; + const NAME: &'static ::core::primitive::str = "QueryRoot"; } impl cynic::schema::NamedType for SubscriptionRoot { - const NAME: &'static str = "SubscriptionRoot"; + const NAME: &'static ::core::primitive::str = "SubscriptionRoot"; } #[allow(non_snake_case, non_camel_case_types)] pub mod __fields { @@ -32,7 +33,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::String; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField for super::super::Book { type Type = super::super::String; @@ -40,7 +41,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField for super::super::Book { type Type = super::super::String; @@ -48,7 +49,7 @@ pub mod __fields { pub struct author; impl cynic::schema::Field for author { type Type = super::super::String; - const NAME: &'static str = "author"; + const NAME: &'static ::core::primitive::str = "author"; } impl cynic::schema::HasField for super::super::Book { type Type = super::super::String; @@ -56,7 +57,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Book { type Type = super::super::String; @@ -66,7 +67,7 @@ pub mod __fields { pub struct mutationType; impl cynic::schema::Field for mutationType { type Type = super::super::MutationType; - const NAME: &'static str = "mutationType"; + const NAME: &'static ::core::primitive::str = "mutationType"; } impl cynic::schema::HasField for super::super::BookChanged { type Type = super::super::MutationType; @@ -74,7 +75,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField for super::super::BookChanged { type Type = super::super::ID; @@ -82,7 +83,7 @@ pub mod __fields { pub struct book; impl cynic::schema::Field for book { type Type = Option; - const NAME: &'static str = "book"; + const NAME: &'static ::core::primitive::str = "book"; } impl cynic::schema::HasField for super::super::BookChanged { type Type = Option; @@ -90,7 +91,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::BookChanged { type Type = super::super::String; @@ -100,7 +101,7 @@ pub mod __fields { pub struct createBook; impl cynic::schema::Field for createBook { type Type = super::super::ID; - const NAME: &'static str = "createBook"; + const NAME: &'static ::core::primitive::str = "createBook"; } impl cynic::schema::HasField for super::super::MutationRoot { type Type = super::super::ID; @@ -109,18 +110,18 @@ pub mod __fields { pub struct name; impl cynic::schema::HasArgument for super::createBook { type ArgumentType = super::super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } pub struct author; impl cynic::schema::HasArgument for super::createBook { type ArgumentType = super::super::super::String; - const NAME: &'static str = "author"; + const NAME: &'static ::core::primitive::str = "author"; } } pub struct deleteBook; impl cynic::schema::Field for deleteBook { type Type = super::super::Boolean; - const NAME: &'static str = "deleteBook"; + const NAME: &'static ::core::primitive::str = "deleteBook"; } impl cynic::schema::HasField for super::super::MutationRoot { type Type = super::super::Boolean; @@ -129,13 +130,13 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument for super::deleteBook { type ArgumentType = super::super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } } pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::MutationRoot { type Type = super::super::String; @@ -145,7 +146,7 @@ pub mod __fields { pub struct books; impl cynic::schema::Field for books { type Type = Vec; - const NAME: &'static str = "books"; + const NAME: &'static ::core::primitive::str = "books"; } impl cynic::schema::HasField for super::super::QueryRoot { type Type = Vec; @@ -153,7 +154,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::QueryRoot { type Type = super::super::String; @@ -163,7 +164,7 @@ pub mod __fields { pub struct interval; impl cynic::schema::Field for interval { type Type = super::super::Int; - const NAME: &'static str = "interval"; + const NAME: &'static ::core::primitive::str = "interval"; } impl cynic::schema::HasField for super::super::SubscriptionRoot { type Type = super::super::Int; @@ -172,13 +173,13 @@ pub mod __fields { pub struct n; impl cynic::schema::HasArgument for super::interval { type ArgumentType = super::super::super::Int; - const NAME: &'static str = "n"; + const NAME: &'static ::core::primitive::str = "n"; } } pub struct books; impl cynic::schema::Field for books { type Type = super::super::BookChanged; - const NAME: &'static str = "books"; + const NAME: &'static ::core::primitive::str = "books"; } impl cynic::schema::HasField for super::super::SubscriptionRoot { type Type = super::super::BookChanged; @@ -187,13 +188,13 @@ pub mod __fields { pub struct mutationType; impl cynic::schema::HasArgument for super::books { type ArgumentType = Option; - const NAME: &'static str = "mutationType"; + const NAME: &'static ::core::primitive::str = "mutationType"; } } pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::SubscriptionRoot { type Type = super::super::String; @@ -279,4 +280,3 @@ pub mod variable { const TYPE: VariableType = VariableType::Named("ID"); } } - diff --git a/cynic-codegen/tests/snapshots/use_schema__graphql.jobs.graphql.snap b/cynic-codegen/tests/snapshots/use_schema__graphql.jobs.graphql.snap index 3378cebcb..771e04298 100644 --- a/cynic-codegen/tests/snapshots/use_schema__graphql.jobs.graphql.snap +++ b/cynic-codegen/tests/snapshots/use_schema__graphql.jobs.graphql.snap @@ -1,6 +1,7 @@ --- source: cynic-codegen/tests/use-schema.rs expression: "format_code(format!(\"{}\", tokens))" +snapshot_kind: text --- impl cynic::schema::QueryRoot for Query {} impl cynic::schema::MutationRoot for Mutation {} @@ -20,7 +21,7 @@ pub struct CountryWhereInput; impl cynic::schema::InputObjectMarker for CountryWhereInput {} pub struct DateTime {} impl cynic::schema::NamedType for DateTime { - const NAME: &'static str = "DateTime"; + const NAME: &'static ::core::primitive::str = "DateTime"; } pub struct Job; pub struct JobInput; @@ -55,37 +56,37 @@ pub struct UpdateJobInput; impl cynic::schema::InputObjectMarker for UpdateJobInput {} pub struct User; impl cynic::schema::NamedType for City { - const NAME: &'static str = "City"; + const NAME: &'static ::core::primitive::str = "City"; } impl cynic::schema::NamedType for Commitment { - const NAME: &'static str = "Commitment"; + const NAME: &'static ::core::primitive::str = "Commitment"; } impl cynic::schema::NamedType for Company { - const NAME: &'static str = "Company"; + const NAME: &'static ::core::primitive::str = "Company"; } impl cynic::schema::NamedType for Country { - const NAME: &'static str = "Country"; + const NAME: &'static ::core::primitive::str = "Country"; } impl cynic::schema::NamedType for Job { - const NAME: &'static str = "Job"; + const NAME: &'static ::core::primitive::str = "Job"; } impl cynic::schema::NamedType for Location { - const NAME: &'static str = "Location"; + const NAME: &'static ::core::primitive::str = "Location"; } impl cynic::schema::NamedType for Mutation { - const NAME: &'static str = "Mutation"; + const NAME: &'static ::core::primitive::str = "Mutation"; } impl cynic::schema::NamedType for Query { - const NAME: &'static str = "Query"; + const NAME: &'static ::core::primitive::str = "Query"; } impl cynic::schema::NamedType for Remote { - const NAME: &'static str = "Remote"; + const NAME: &'static ::core::primitive::str = "Remote"; } impl cynic::schema::NamedType for Tag { - const NAME: &'static str = "Tag"; + const NAME: &'static ::core::primitive::str = "Tag"; } impl cynic::schema::NamedType for User { - const NAME: &'static str = "User"; + const NAME: &'static ::core::primitive::str = "User"; } #[allow(non_snake_case, non_camel_case_types)] pub mod __fields { @@ -93,7 +94,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField for super::super::City { type Type = super::super::ID; @@ -101,7 +102,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField for super::super::City { type Type = super::super::String; @@ -109,7 +110,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField for super::super::City { type Type = super::super::String; @@ -117,7 +118,7 @@ pub mod __fields { pub struct country; impl cynic::schema::Field for country { type Type = super::super::Country; - const NAME: &'static str = "country"; + const NAME: &'static ::core::primitive::str = "country"; } impl cynic::schema::HasField for super::super::City { type Type = super::super::Country; @@ -125,7 +126,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = super::super::String; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasField for super::super::City { type Type = super::super::String; @@ -133,7 +134,7 @@ pub mod __fields { pub struct jobs; impl cynic::schema::Field for jobs { type Type = Option>; - const NAME: &'static str = "jobs"; + const NAME: &'static ::core::primitive::str = "jobs"; } impl cynic::schema::HasField for super::super::City { type Type = Option>; @@ -142,43 +143,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument for super::jobs { type ArgumentType = Option; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument for super::jobs { type ArgumentType = Option; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument for super::jobs { type ArgumentType = Option; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument for super::jobs { type ArgumentType = Option; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument for super::jobs { type ArgumentType = Option; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument for super::jobs { type ArgumentType = Option; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument for super::jobs { type ArgumentType = Option; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField for super::super::City { type Type = super::super::DateTime; @@ -186,7 +187,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField for super::super::City { type Type = super::super::DateTime; @@ -194,7 +195,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::City { type Type = super::super::String; @@ -204,13 +205,13 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = Option; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput {} pub struct id_not; impl cynic::schema::Field for id_not { type Type = Option; - const NAME: &'static str = "id_not"; + const NAME: &'static ::core::primitive::str = "id_not"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -219,7 +220,7 @@ pub mod __fields { pub struct id_in; impl cynic::schema::Field for id_in { type Type = Option>; - const NAME: &'static str = "id_in"; + const NAME: &'static ::core::primitive::str = "id_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -228,7 +229,7 @@ pub mod __fields { pub struct id_not_in; impl cynic::schema::Field for id_not_in { type Type = Option>; - const NAME: &'static str = "id_not_in"; + const NAME: &'static ::core::primitive::str = "id_not_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -237,7 +238,7 @@ pub mod __fields { pub struct id_lt; impl cynic::schema::Field for id_lt { type Type = Option; - const NAME: &'static str = "id_lt"; + const NAME: &'static ::core::primitive::str = "id_lt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -246,7 +247,7 @@ pub mod __fields { pub struct id_lte; impl cynic::schema::Field for id_lte { type Type = Option; - const NAME: &'static str = "id_lte"; + const NAME: &'static ::core::primitive::str = "id_lte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -255,7 +256,7 @@ pub mod __fields { pub struct id_gt; impl cynic::schema::Field for id_gt { type Type = Option; - const NAME: &'static str = "id_gt"; + const NAME: &'static ::core::primitive::str = "id_gt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -264,7 +265,7 @@ pub mod __fields { pub struct id_gte; impl cynic::schema::Field for id_gte { type Type = Option; - const NAME: &'static str = "id_gte"; + const NAME: &'static ::core::primitive::str = "id_gte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -273,7 +274,7 @@ pub mod __fields { pub struct id_contains; impl cynic::schema::Field for id_contains { type Type = Option; - const NAME: &'static str = "id_contains"; + const NAME: &'static ::core::primitive::str = "id_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -282,7 +283,7 @@ pub mod __fields { pub struct id_not_contains; impl cynic::schema::Field for id_not_contains { type Type = Option; - const NAME: &'static str = "id_not_contains"; + const NAME: &'static ::core::primitive::str = "id_not_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -291,7 +292,7 @@ pub mod __fields { pub struct id_starts_with; impl cynic::schema::Field for id_starts_with { type Type = Option; - const NAME: &'static str = "id_starts_with"; + const NAME: &'static ::core::primitive::str = "id_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -300,7 +301,7 @@ pub mod __fields { pub struct id_not_starts_with; impl cynic::schema::Field for id_not_starts_with { type Type = Option; - const NAME: &'static str = "id_not_starts_with"; + const NAME: &'static ::core::primitive::str = "id_not_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -309,7 +310,7 @@ pub mod __fields { pub struct id_ends_with; impl cynic::schema::Field for id_ends_with { type Type = Option; - const NAME: &'static str = "id_ends_with"; + const NAME: &'static ::core::primitive::str = "id_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -318,7 +319,7 @@ pub mod __fields { pub struct id_not_ends_with; impl cynic::schema::Field for id_not_ends_with { type Type = Option; - const NAME: &'static str = "id_not_ends_with"; + const NAME: &'static ::core::primitive::str = "id_not_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -327,7 +328,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -336,7 +337,7 @@ pub mod __fields { pub struct name_not; impl cynic::schema::Field for name_not { type Type = Option; - const NAME: &'static str = "name_not"; + const NAME: &'static ::core::primitive::str = "name_not"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -345,7 +346,7 @@ pub mod __fields { pub struct name_in; impl cynic::schema::Field for name_in { type Type = Option>; - const NAME: &'static str = "name_in"; + const NAME: &'static ::core::primitive::str = "name_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -354,7 +355,7 @@ pub mod __fields { pub struct name_not_in; impl cynic::schema::Field for name_not_in { type Type = Option>; - const NAME: &'static str = "name_not_in"; + const NAME: &'static ::core::primitive::str = "name_not_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -363,7 +364,7 @@ pub mod __fields { pub struct name_lt; impl cynic::schema::Field for name_lt { type Type = Option; - const NAME: &'static str = "name_lt"; + const NAME: &'static ::core::primitive::str = "name_lt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -372,7 +373,7 @@ pub mod __fields { pub struct name_lte; impl cynic::schema::Field for name_lte { type Type = Option; - const NAME: &'static str = "name_lte"; + const NAME: &'static ::core::primitive::str = "name_lte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -381,7 +382,7 @@ pub mod __fields { pub struct name_gt; impl cynic::schema::Field for name_gt { type Type = Option; - const NAME: &'static str = "name_gt"; + const NAME: &'static ::core::primitive::str = "name_gt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -390,7 +391,7 @@ pub mod __fields { pub struct name_gte; impl cynic::schema::Field for name_gte { type Type = Option; - const NAME: &'static str = "name_gte"; + const NAME: &'static ::core::primitive::str = "name_gte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -399,7 +400,7 @@ pub mod __fields { pub struct name_contains; impl cynic::schema::Field for name_contains { type Type = Option; - const NAME: &'static str = "name_contains"; + const NAME: &'static ::core::primitive::str = "name_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -408,7 +409,7 @@ pub mod __fields { pub struct name_not_contains; impl cynic::schema::Field for name_not_contains { type Type = Option; - const NAME: &'static str = "name_not_contains"; + const NAME: &'static ::core::primitive::str = "name_not_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -417,7 +418,7 @@ pub mod __fields { pub struct name_starts_with; impl cynic::schema::Field for name_starts_with { type Type = Option; - const NAME: &'static str = "name_starts_with"; + const NAME: &'static ::core::primitive::str = "name_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -426,7 +427,7 @@ pub mod __fields { pub struct name_not_starts_with; impl cynic::schema::Field for name_not_starts_with { type Type = Option; - const NAME: &'static str = "name_not_starts_with"; + const NAME: &'static ::core::primitive::str = "name_not_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -435,7 +436,7 @@ pub mod __fields { pub struct name_ends_with; impl cynic::schema::Field for name_ends_with { type Type = Option; - const NAME: &'static str = "name_ends_with"; + const NAME: &'static ::core::primitive::str = "name_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -444,7 +445,7 @@ pub mod __fields { pub struct name_not_ends_with; impl cynic::schema::Field for name_not_ends_with { type Type = Option; - const NAME: &'static str = "name_not_ends_with"; + const NAME: &'static ::core::primitive::str = "name_not_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -453,7 +454,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -462,7 +463,7 @@ pub mod __fields { pub struct slug_not; impl cynic::schema::Field for slug_not { type Type = Option; - const NAME: &'static str = "slug_not"; + const NAME: &'static ::core::primitive::str = "slug_not"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -471,7 +472,7 @@ pub mod __fields { pub struct slug_in; impl cynic::schema::Field for slug_in { type Type = Option>; - const NAME: &'static str = "slug_in"; + const NAME: &'static ::core::primitive::str = "slug_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -480,7 +481,7 @@ pub mod __fields { pub struct slug_not_in; impl cynic::schema::Field for slug_not_in { type Type = Option>; - const NAME: &'static str = "slug_not_in"; + const NAME: &'static ::core::primitive::str = "slug_not_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -489,7 +490,7 @@ pub mod __fields { pub struct slug_lt; impl cynic::schema::Field for slug_lt { type Type = Option; - const NAME: &'static str = "slug_lt"; + const NAME: &'static ::core::primitive::str = "slug_lt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -498,7 +499,7 @@ pub mod __fields { pub struct slug_lte; impl cynic::schema::Field for slug_lte { type Type = Option; - const NAME: &'static str = "slug_lte"; + const NAME: &'static ::core::primitive::str = "slug_lte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -507,7 +508,7 @@ pub mod __fields { pub struct slug_gt; impl cynic::schema::Field for slug_gt { type Type = Option; - const NAME: &'static str = "slug_gt"; + const NAME: &'static ::core::primitive::str = "slug_gt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -516,7 +517,7 @@ pub mod __fields { pub struct slug_gte; impl cynic::schema::Field for slug_gte { type Type = Option; - const NAME: &'static str = "slug_gte"; + const NAME: &'static ::core::primitive::str = "slug_gte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -525,7 +526,7 @@ pub mod __fields { pub struct slug_contains; impl cynic::schema::Field for slug_contains { type Type = Option; - const NAME: &'static str = "slug_contains"; + const NAME: &'static ::core::primitive::str = "slug_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -534,7 +535,7 @@ pub mod __fields { pub struct slug_not_contains; impl cynic::schema::Field for slug_not_contains { type Type = Option; - const NAME: &'static str = "slug_not_contains"; + const NAME: &'static ::core::primitive::str = "slug_not_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -543,7 +544,7 @@ pub mod __fields { pub struct slug_starts_with; impl cynic::schema::Field for slug_starts_with { type Type = Option; - const NAME: &'static str = "slug_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -552,7 +553,7 @@ pub mod __fields { pub struct slug_not_starts_with; impl cynic::schema::Field for slug_not_starts_with { type Type = Option; - const NAME: &'static str = "slug_not_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_not_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -561,7 +562,7 @@ pub mod __fields { pub struct slug_ends_with; impl cynic::schema::Field for slug_ends_with { type Type = Option; - const NAME: &'static str = "slug_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -570,7 +571,7 @@ pub mod __fields { pub struct slug_not_ends_with; impl cynic::schema::Field for slug_not_ends_with { type Type = Option; - const NAME: &'static str = "slug_not_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_not_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -579,7 +580,7 @@ pub mod __fields { pub struct country; impl cynic::schema::Field for country { type Type = Option; - const NAME: &'static str = "country"; + const NAME: &'static ::core::primitive::str = "country"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -588,7 +589,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = Option; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -597,7 +598,7 @@ pub mod __fields { pub struct type_not; impl cynic::schema::Field for type_not { type Type = Option; - const NAME: &'static str = "type_not"; + const NAME: &'static ::core::primitive::str = "type_not"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -606,7 +607,7 @@ pub mod __fields { pub struct type_in; impl cynic::schema::Field for type_in { type Type = Option>; - const NAME: &'static str = "type_in"; + const NAME: &'static ::core::primitive::str = "type_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -615,7 +616,7 @@ pub mod __fields { pub struct type_not_in; impl cynic::schema::Field for type_not_in { type Type = Option>; - const NAME: &'static str = "type_not_in"; + const NAME: &'static ::core::primitive::str = "type_not_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -624,7 +625,7 @@ pub mod __fields { pub struct type_lt; impl cynic::schema::Field for type_lt { type Type = Option; - const NAME: &'static str = "type_lt"; + const NAME: &'static ::core::primitive::str = "type_lt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -633,7 +634,7 @@ pub mod __fields { pub struct type_lte; impl cynic::schema::Field for type_lte { type Type = Option; - const NAME: &'static str = "type_lte"; + const NAME: &'static ::core::primitive::str = "type_lte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -642,7 +643,7 @@ pub mod __fields { pub struct type_gt; impl cynic::schema::Field for type_gt { type Type = Option; - const NAME: &'static str = "type_gt"; + const NAME: &'static ::core::primitive::str = "type_gt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -651,7 +652,7 @@ pub mod __fields { pub struct type_gte; impl cynic::schema::Field for type_gte { type Type = Option; - const NAME: &'static str = "type_gte"; + const NAME: &'static ::core::primitive::str = "type_gte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -660,7 +661,7 @@ pub mod __fields { pub struct type_contains; impl cynic::schema::Field for type_contains { type Type = Option; - const NAME: &'static str = "type_contains"; + const NAME: &'static ::core::primitive::str = "type_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -669,7 +670,7 @@ pub mod __fields { pub struct type_not_contains; impl cynic::schema::Field for type_not_contains { type Type = Option; - const NAME: &'static str = "type_not_contains"; + const NAME: &'static ::core::primitive::str = "type_not_contains"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -678,7 +679,7 @@ pub mod __fields { pub struct type_starts_with; impl cynic::schema::Field for type_starts_with { type Type = Option; - const NAME: &'static str = "type_starts_with"; + const NAME: &'static ::core::primitive::str = "type_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -687,7 +688,7 @@ pub mod __fields { pub struct type_not_starts_with; impl cynic::schema::Field for type_not_starts_with { type Type = Option; - const NAME: &'static str = "type_not_starts_with"; + const NAME: &'static ::core::primitive::str = "type_not_starts_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -696,7 +697,7 @@ pub mod __fields { pub struct type_ends_with; impl cynic::schema::Field for type_ends_with { type Type = Option; - const NAME: &'static str = "type_ends_with"; + const NAME: &'static ::core::primitive::str = "type_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -705,7 +706,7 @@ pub mod __fields { pub struct type_not_ends_with; impl cynic::schema::Field for type_not_ends_with { type Type = Option; - const NAME: &'static str = "type_not_ends_with"; + const NAME: &'static ::core::primitive::str = "type_not_ends_with"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -714,7 +715,7 @@ pub mod __fields { pub struct jobs_every; impl cynic::schema::Field for jobs_every { type Type = Option; - const NAME: &'static str = "jobs_every"; + const NAME: &'static ::core::primitive::str = "jobs_every"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -723,7 +724,7 @@ pub mod __fields { pub struct jobs_some; impl cynic::schema::Field for jobs_some { type Type = Option; - const NAME: &'static str = "jobs_some"; + const NAME: &'static ::core::primitive::str = "jobs_some"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -732,7 +733,7 @@ pub mod __fields { pub struct jobs_none; impl cynic::schema::Field for jobs_none { type Type = Option; - const NAME: &'static str = "jobs_none"; + const NAME: &'static ::core::primitive::str = "jobs_none"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -741,7 +742,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = Option; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -750,7 +751,7 @@ pub mod __fields { pub struct createdAt_not; impl cynic::schema::Field for createdAt_not { type Type = Option; - const NAME: &'static str = "createdAt_not"; + const NAME: &'static ::core::primitive::str = "createdAt_not"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -759,7 +760,7 @@ pub mod __fields { pub struct createdAt_in; impl cynic::schema::Field for createdAt_in { type Type = Option>; - const NAME: &'static str = "createdAt_in"; + const NAME: &'static ::core::primitive::str = "createdAt_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -768,7 +769,7 @@ pub mod __fields { pub struct createdAt_not_in; impl cynic::schema::Field for createdAt_not_in { type Type = Option>; - const NAME: &'static str = "createdAt_not_in"; + const NAME: &'static ::core::primitive::str = "createdAt_not_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -777,7 +778,7 @@ pub mod __fields { pub struct createdAt_lt; impl cynic::schema::Field for createdAt_lt { type Type = Option; - const NAME: &'static str = "createdAt_lt"; + const NAME: &'static ::core::primitive::str = "createdAt_lt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -786,7 +787,7 @@ pub mod __fields { pub struct createdAt_lte; impl cynic::schema::Field for createdAt_lte { type Type = Option; - const NAME: &'static str = "createdAt_lte"; + const NAME: &'static ::core::primitive::str = "createdAt_lte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -795,7 +796,7 @@ pub mod __fields { pub struct createdAt_gt; impl cynic::schema::Field for createdAt_gt { type Type = Option; - const NAME: &'static str = "createdAt_gt"; + const NAME: &'static ::core::primitive::str = "createdAt_gt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -804,7 +805,7 @@ pub mod __fields { pub struct createdAt_gte; impl cynic::schema::Field for createdAt_gte { type Type = Option; - const NAME: &'static str = "createdAt_gte"; + const NAME: &'static ::core::primitive::str = "createdAt_gte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -813,7 +814,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = Option; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -822,7 +823,7 @@ pub mod __fields { pub struct updatedAt_not; impl cynic::schema::Field for updatedAt_not { type Type = Option; - const NAME: &'static str = "updatedAt_not"; + const NAME: &'static ::core::primitive::str = "updatedAt_not"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -831,7 +832,7 @@ pub mod __fields { pub struct updatedAt_in; impl cynic::schema::Field for updatedAt_in { type Type = Option>; - const NAME: &'static str = "updatedAt_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -840,7 +841,7 @@ pub mod __fields { pub struct updatedAt_not_in; impl cynic::schema::Field for updatedAt_not_in { type Type = Option>; - const NAME: &'static str = "updatedAt_not_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_not_in"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -849,7 +850,7 @@ pub mod __fields { pub struct updatedAt_lt; impl cynic::schema::Field for updatedAt_lt { type Type = Option; - const NAME: &'static str = "updatedAt_lt"; + const NAME: &'static ::core::primitive::str = "updatedAt_lt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -858,7 +859,7 @@ pub mod __fields { pub struct updatedAt_lte; impl cynic::schema::Field for updatedAt_lte { type Type = Option; - const NAME: &'static str = "updatedAt_lte"; + const NAME: &'static ::core::primitive::str = "updatedAt_lte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -867,7 +868,7 @@ pub mod __fields { pub struct updatedAt_gt; impl cynic::schema::Field for updatedAt_gt { type Type = Option; - const NAME: &'static str = "updatedAt_gt"; + const NAME: &'static ::core::primitive::str = "updatedAt_gt"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -876,7 +877,7 @@ pub mod __fields { pub struct updatedAt_gte; impl cynic::schema::Field for updatedAt_gte { type Type = Option; - const NAME: &'static str = "updatedAt_gte"; + const NAME: &'static ::core::primitive::str = "updatedAt_gte"; } impl cynic::schema::HasInputField> for super::super::CityWhereInput @@ -885,7 +886,7 @@ pub mod __fields { pub struct AND; impl cynic::schema::Field for AND { type Type = Option>; - const NAME: &'static str = "AND"; + const NAME: &'static ::core::primitive::str = "AND"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -894,7 +895,7 @@ pub mod __fields { pub struct OR; impl cynic::schema::Field for OR { type Type = Option>; - const NAME: &'static str = "OR"; + const NAME: &'static ::core::primitive::str = "OR"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -903,7 +904,7 @@ pub mod __fields { pub struct NOT; impl cynic::schema::Field for NOT { type Type = Option>; - const NAME: &'static str = "NOT"; + const NAME: &'static ::core::primitive::str = "NOT"; } impl cynic::schema::HasInputField>> for super::super::CityWhereInput @@ -914,7 +915,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField for super::super::Commitment { type Type = super::super::ID; @@ -922,7 +923,7 @@ pub mod __fields { pub struct title; impl cynic::schema::Field for title { type Type = super::super::String; - const NAME: &'static str = "title"; + const NAME: &'static ::core::primitive::str = "title"; } impl cynic::schema::HasField for super::super::Commitment { type Type = super::super::String; @@ -930,7 +931,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField<slug> for super::super::Commitment { type Type = super::super::String; @@ -938,7 +939,7 @@ pub mod __fields { pub struct jobs; impl cynic::schema::Field for jobs { type Type = Option<Vec<super::super::Job>>; - const NAME: &'static str = "jobs"; + const NAME: &'static ::core::primitive::str = "jobs"; } impl cynic::schema::HasField<jobs> for super::super::Commitment { type Type = Option<Vec<super::super::Job>>; @@ -947,43 +948,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::jobs { type ArgumentType = Option<super::super::super::JobWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::jobs { type ArgumentType = Option<super::super::super::JobOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField<createdAt> for super::super::Commitment { type Type = super::super::DateTime; @@ -991,7 +992,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField<updatedAt> for super::super::Commitment { type Type = super::super::DateTime; @@ -999,7 +1000,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Commitment { type Type = super::super::String; @@ -1009,7 +1010,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = Option<super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1018,7 +1019,7 @@ pub mod __fields { pub struct id_not; impl cynic::schema::Field for id_not { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not"; + const NAME: &'static ::core::primitive::str = "id_not"; } impl cynic::schema::HasInputField<id_not, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1027,7 +1028,7 @@ pub mod __fields { pub struct id_in; impl cynic::schema::Field for id_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_in"; + const NAME: &'static ::core::primitive::str = "id_in"; } impl cynic::schema::HasInputField<id_in, Option<Vec<super::super::ID>>> for super::super::CommitmentWhereInput @@ -1036,7 +1037,7 @@ pub mod __fields { pub struct id_not_in; impl cynic::schema::Field for id_not_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_not_in"; + const NAME: &'static ::core::primitive::str = "id_not_in"; } impl cynic::schema::HasInputField<id_not_in, Option<Vec<super::super::ID>>> for super::super::CommitmentWhereInput @@ -1045,7 +1046,7 @@ pub mod __fields { pub struct id_lt; impl cynic::schema::Field for id_lt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lt"; + const NAME: &'static ::core::primitive::str = "id_lt"; } impl cynic::schema::HasInputField<id_lt, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1054,7 +1055,7 @@ pub mod __fields { pub struct id_lte; impl cynic::schema::Field for id_lte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lte"; + const NAME: &'static ::core::primitive::str = "id_lte"; } impl cynic::schema::HasInputField<id_lte, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1063,7 +1064,7 @@ pub mod __fields { pub struct id_gt; impl cynic::schema::Field for id_gt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gt"; + const NAME: &'static ::core::primitive::str = "id_gt"; } impl cynic::schema::HasInputField<id_gt, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1072,7 +1073,7 @@ pub mod __fields { pub struct id_gte; impl cynic::schema::Field for id_gte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gte"; + const NAME: &'static ::core::primitive::str = "id_gte"; } impl cynic::schema::HasInputField<id_gte, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1081,7 +1082,7 @@ pub mod __fields { pub struct id_contains; impl cynic::schema::Field for id_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_contains"; + const NAME: &'static ::core::primitive::str = "id_contains"; } impl cynic::schema::HasInputField<id_contains, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1090,7 +1091,7 @@ pub mod __fields { pub struct id_not_contains; impl cynic::schema::Field for id_not_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_contains"; + const NAME: &'static ::core::primitive::str = "id_not_contains"; } impl cynic::schema::HasInputField<id_not_contains, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1099,7 +1100,7 @@ pub mod __fields { pub struct id_starts_with; impl cynic::schema::Field for id_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_starts_with"; + const NAME: &'static ::core::primitive::str = "id_starts_with"; } impl cynic::schema::HasInputField<id_starts_with, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1108,7 +1109,7 @@ pub mod __fields { pub struct id_not_starts_with; impl cynic::schema::Field for id_not_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_starts_with"; + const NAME: &'static ::core::primitive::str = "id_not_starts_with"; } impl cynic::schema::HasInputField<id_not_starts_with, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1117,7 +1118,7 @@ pub mod __fields { pub struct id_ends_with; impl cynic::schema::Field for id_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_ends_with"; + const NAME: &'static ::core::primitive::str = "id_ends_with"; } impl cynic::schema::HasInputField<id_ends_with, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1126,7 +1127,7 @@ pub mod __fields { pub struct id_not_ends_with; impl cynic::schema::Field for id_not_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_ends_with"; + const NAME: &'static ::core::primitive::str = "id_not_ends_with"; } impl cynic::schema::HasInputField<id_not_ends_with, Option<super::super::ID>> for super::super::CommitmentWhereInput @@ -1135,7 +1136,7 @@ pub mod __fields { pub struct title; impl cynic::schema::Field for title { type Type = Option<super::super::String>; - const NAME: &'static str = "title"; + const NAME: &'static ::core::primitive::str = "title"; } impl cynic::schema::HasInputField<title, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1144,7 +1145,7 @@ pub mod __fields { pub struct title_not; impl cynic::schema::Field for title_not { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not"; + const NAME: &'static ::core::primitive::str = "title_not"; } impl cynic::schema::HasInputField<title_not, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1153,7 +1154,7 @@ pub mod __fields { pub struct title_in; impl cynic::schema::Field for title_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "title_in"; + const NAME: &'static ::core::primitive::str = "title_in"; } impl cynic::schema::HasInputField<title_in, Option<Vec<super::super::String>>> for super::super::CommitmentWhereInput @@ -1162,7 +1163,7 @@ pub mod __fields { pub struct title_not_in; impl cynic::schema::Field for title_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "title_not_in"; + const NAME: &'static ::core::primitive::str = "title_not_in"; } impl cynic::schema::HasInputField<title_not_in, Option<Vec<super::super::String>>> for super::super::CommitmentWhereInput @@ -1171,7 +1172,7 @@ pub mod __fields { pub struct title_lt; impl cynic::schema::Field for title_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "title_lt"; + const NAME: &'static ::core::primitive::str = "title_lt"; } impl cynic::schema::HasInputField<title_lt, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1180,7 +1181,7 @@ pub mod __fields { pub struct title_lte; impl cynic::schema::Field for title_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "title_lte"; + const NAME: &'static ::core::primitive::str = "title_lte"; } impl cynic::schema::HasInputField<title_lte, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1189,7 +1190,7 @@ pub mod __fields { pub struct title_gt; impl cynic::schema::Field for title_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "title_gt"; + const NAME: &'static ::core::primitive::str = "title_gt"; } impl cynic::schema::HasInputField<title_gt, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1198,7 +1199,7 @@ pub mod __fields { pub struct title_gte; impl cynic::schema::Field for title_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "title_gte"; + const NAME: &'static ::core::primitive::str = "title_gte"; } impl cynic::schema::HasInputField<title_gte, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1207,7 +1208,7 @@ pub mod __fields { pub struct title_contains; impl cynic::schema::Field for title_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "title_contains"; + const NAME: &'static ::core::primitive::str = "title_contains"; } impl cynic::schema::HasInputField<title_contains, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1216,7 +1217,7 @@ pub mod __fields { pub struct title_not_contains; impl cynic::schema::Field for title_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not_contains"; + const NAME: &'static ::core::primitive::str = "title_not_contains"; } impl cynic::schema::HasInputField<title_not_contains, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1225,7 +1226,7 @@ pub mod __fields { pub struct title_starts_with; impl cynic::schema::Field for title_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_starts_with"; + const NAME: &'static ::core::primitive::str = "title_starts_with"; } impl cynic::schema::HasInputField<title_starts_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1234,7 +1235,7 @@ pub mod __fields { pub struct title_not_starts_with; impl cynic::schema::Field for title_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not_starts_with"; + const NAME: &'static ::core::primitive::str = "title_not_starts_with"; } impl cynic::schema::HasInputField<title_not_starts_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1243,7 +1244,7 @@ pub mod __fields { pub struct title_ends_with; impl cynic::schema::Field for title_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_ends_with"; + const NAME: &'static ::core::primitive::str = "title_ends_with"; } impl cynic::schema::HasInputField<title_ends_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1252,7 +1253,7 @@ pub mod __fields { pub struct title_not_ends_with; impl cynic::schema::Field for title_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not_ends_with"; + const NAME: &'static ::core::primitive::str = "title_not_ends_with"; } impl cynic::schema::HasInputField<title_not_ends_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1261,7 +1262,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option<super::super::String>; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1270,7 +1271,7 @@ pub mod __fields { pub struct slug_not; impl cynic::schema::Field for slug_not { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not"; + const NAME: &'static ::core::primitive::str = "slug_not"; } impl cynic::schema::HasInputField<slug_not, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1279,7 +1280,7 @@ pub mod __fields { pub struct slug_in; impl cynic::schema::Field for slug_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_in"; + const NAME: &'static ::core::primitive::str = "slug_in"; } impl cynic::schema::HasInputField<slug_in, Option<Vec<super::super::String>>> for super::super::CommitmentWhereInput @@ -1288,7 +1289,7 @@ pub mod __fields { pub struct slug_not_in; impl cynic::schema::Field for slug_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_not_in"; + const NAME: &'static ::core::primitive::str = "slug_not_in"; } impl cynic::schema::HasInputField<slug_not_in, Option<Vec<super::super::String>>> for super::super::CommitmentWhereInput @@ -1297,7 +1298,7 @@ pub mod __fields { pub struct slug_lt; impl cynic::schema::Field for slug_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lt"; + const NAME: &'static ::core::primitive::str = "slug_lt"; } impl cynic::schema::HasInputField<slug_lt, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1306,7 +1307,7 @@ pub mod __fields { pub struct slug_lte; impl cynic::schema::Field for slug_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lte"; + const NAME: &'static ::core::primitive::str = "slug_lte"; } impl cynic::schema::HasInputField<slug_lte, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1315,7 +1316,7 @@ pub mod __fields { pub struct slug_gt; impl cynic::schema::Field for slug_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gt"; + const NAME: &'static ::core::primitive::str = "slug_gt"; } impl cynic::schema::HasInputField<slug_gt, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1324,7 +1325,7 @@ pub mod __fields { pub struct slug_gte; impl cynic::schema::Field for slug_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gte"; + const NAME: &'static ::core::primitive::str = "slug_gte"; } impl cynic::schema::HasInputField<slug_gte, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1333,7 +1334,7 @@ pub mod __fields { pub struct slug_contains; impl cynic::schema::Field for slug_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_contains"; + const NAME: &'static ::core::primitive::str = "slug_contains"; } impl cynic::schema::HasInputField<slug_contains, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1342,7 +1343,7 @@ pub mod __fields { pub struct slug_not_contains; impl cynic::schema::Field for slug_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_contains"; + const NAME: &'static ::core::primitive::str = "slug_not_contains"; } impl cynic::schema::HasInputField<slug_not_contains, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1351,7 +1352,7 @@ pub mod __fields { pub struct slug_starts_with; impl cynic::schema::Field for slug_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_starts_with"; } impl cynic::schema::HasInputField<slug_starts_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1360,7 +1361,7 @@ pub mod __fields { pub struct slug_not_starts_with; impl cynic::schema::Field for slug_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_not_starts_with"; } impl cynic::schema::HasInputField<slug_not_starts_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1369,7 +1370,7 @@ pub mod __fields { pub struct slug_ends_with; impl cynic::schema::Field for slug_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_ends_with"; } impl cynic::schema::HasInputField<slug_ends_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1378,7 +1379,7 @@ pub mod __fields { pub struct slug_not_ends_with; impl cynic::schema::Field for slug_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_not_ends_with"; } impl cynic::schema::HasInputField<slug_not_ends_with, Option<super::super::String>> for super::super::CommitmentWhereInput @@ -1387,7 +1388,7 @@ pub mod __fields { pub struct jobs_every; impl cynic::schema::Field for jobs_every { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_every"; + const NAME: &'static ::core::primitive::str = "jobs_every"; } impl cynic::schema::HasInputField<jobs_every, Option<super::super::JobWhereInput>> for super::super::CommitmentWhereInput @@ -1396,7 +1397,7 @@ pub mod __fields { pub struct jobs_some; impl cynic::schema::Field for jobs_some { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_some"; + const NAME: &'static ::core::primitive::str = "jobs_some"; } impl cynic::schema::HasInputField<jobs_some, Option<super::super::JobWhereInput>> for super::super::CommitmentWhereInput @@ -1405,7 +1406,7 @@ pub mod __fields { pub struct jobs_none; impl cynic::schema::Field for jobs_none { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_none"; + const NAME: &'static ::core::primitive::str = "jobs_none"; } impl cynic::schema::HasInputField<jobs_none, Option<super::super::JobWhereInput>> for super::super::CommitmentWhereInput @@ -1414,7 +1415,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasInputField<createdAt, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1423,7 +1424,7 @@ pub mod __fields { pub struct createdAt_not; impl cynic::schema::Field for createdAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_not"; + const NAME: &'static ::core::primitive::str = "createdAt_not"; } impl cynic::schema::HasInputField<createdAt_not, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1432,7 +1433,7 @@ pub mod __fields { pub struct createdAt_in; impl cynic::schema::Field for createdAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_in"; + const NAME: &'static ::core::primitive::str = "createdAt_in"; } impl cynic::schema::HasInputField<createdAt_in, Option<Vec<super::super::DateTime>>> for super::super::CommitmentWhereInput @@ -1441,7 +1442,7 @@ pub mod __fields { pub struct createdAt_not_in; impl cynic::schema::Field for createdAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_not_in"; + const NAME: &'static ::core::primitive::str = "createdAt_not_in"; } impl cynic::schema::HasInputField<createdAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::CommitmentWhereInput @@ -1450,7 +1451,7 @@ pub mod __fields { pub struct createdAt_lt; impl cynic::schema::Field for createdAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lt"; + const NAME: &'static ::core::primitive::str = "createdAt_lt"; } impl cynic::schema::HasInputField<createdAt_lt, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1459,7 +1460,7 @@ pub mod __fields { pub struct createdAt_lte; impl cynic::schema::Field for createdAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lte"; + const NAME: &'static ::core::primitive::str = "createdAt_lte"; } impl cynic::schema::HasInputField<createdAt_lte, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1468,7 +1469,7 @@ pub mod __fields { pub struct createdAt_gt; impl cynic::schema::Field for createdAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gt"; + const NAME: &'static ::core::primitive::str = "createdAt_gt"; } impl cynic::schema::HasInputField<createdAt_gt, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1477,7 +1478,7 @@ pub mod __fields { pub struct createdAt_gte; impl cynic::schema::Field for createdAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gte"; + const NAME: &'static ::core::primitive::str = "createdAt_gte"; } impl cynic::schema::HasInputField<createdAt_gte, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1486,7 +1487,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasInputField<updatedAt, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1495,7 +1496,7 @@ pub mod __fields { pub struct updatedAt_not; impl cynic::schema::Field for updatedAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_not"; + const NAME: &'static ::core::primitive::str = "updatedAt_not"; } impl cynic::schema::HasInputField<updatedAt_not, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1504,7 +1505,7 @@ pub mod __fields { pub struct updatedAt_in; impl cynic::schema::Field for updatedAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_in"; } impl cynic::schema::HasInputField<updatedAt_in, Option<Vec<super::super::DateTime>>> for super::super::CommitmentWhereInput @@ -1513,7 +1514,7 @@ pub mod __fields { pub struct updatedAt_not_in; impl cynic::schema::Field for updatedAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_not_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_not_in"; } impl cynic::schema::HasInputField<updatedAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::CommitmentWhereInput @@ -1522,7 +1523,7 @@ pub mod __fields { pub struct updatedAt_lt; impl cynic::schema::Field for updatedAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lt"; + const NAME: &'static ::core::primitive::str = "updatedAt_lt"; } impl cynic::schema::HasInputField<updatedAt_lt, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1531,7 +1532,7 @@ pub mod __fields { pub struct updatedAt_lte; impl cynic::schema::Field for updatedAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lte"; + const NAME: &'static ::core::primitive::str = "updatedAt_lte"; } impl cynic::schema::HasInputField<updatedAt_lte, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1540,7 +1541,7 @@ pub mod __fields { pub struct updatedAt_gt; impl cynic::schema::Field for updatedAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gt"; + const NAME: &'static ::core::primitive::str = "updatedAt_gt"; } impl cynic::schema::HasInputField<updatedAt_gt, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1549,7 +1550,7 @@ pub mod __fields { pub struct updatedAt_gte; impl cynic::schema::Field for updatedAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gte"; + const NAME: &'static ::core::primitive::str = "updatedAt_gte"; } impl cynic::schema::HasInputField<updatedAt_gte, Option<super::super::DateTime>> for super::super::CommitmentWhereInput @@ -1558,7 +1559,7 @@ pub mod __fields { pub struct AND; impl cynic::schema::Field for AND { type Type = Option<Vec<super::super::CommitmentWhereInput>>; - const NAME: &'static str = "AND"; + const NAME: &'static ::core::primitive::str = "AND"; } impl cynic::schema::HasInputField<AND, Option<Vec<super::super::CommitmentWhereInput>>> for super::super::CommitmentWhereInput @@ -1567,7 +1568,7 @@ pub mod __fields { pub struct OR; impl cynic::schema::Field for OR { type Type = Option<Vec<super::super::CommitmentWhereInput>>; - const NAME: &'static str = "OR"; + const NAME: &'static ::core::primitive::str = "OR"; } impl cynic::schema::HasInputField<OR, Option<Vec<super::super::CommitmentWhereInput>>> for super::super::CommitmentWhereInput @@ -1576,7 +1577,7 @@ pub mod __fields { pub struct NOT; impl cynic::schema::Field for NOT { type Type = Option<Vec<super::super::CommitmentWhereInput>>; - const NAME: &'static str = "NOT"; + const NAME: &'static ::core::primitive::str = "NOT"; } impl cynic::schema::HasInputField<NOT, Option<Vec<super::super::CommitmentWhereInput>>> for super::super::CommitmentWhereInput @@ -1587,7 +1588,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Company { type Type = super::super::ID; @@ -1595,7 +1596,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Company { type Type = super::super::String; @@ -1603,7 +1604,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField<slug> for super::super::Company { type Type = super::super::String; @@ -1611,7 +1612,7 @@ pub mod __fields { pub struct websiteUrl; impl cynic::schema::Field for websiteUrl { type Type = super::super::String; - const NAME: &'static str = "websiteUrl"; + const NAME: &'static ::core::primitive::str = "websiteUrl"; } impl cynic::schema::HasField<websiteUrl> for super::super::Company { type Type = super::super::String; @@ -1619,7 +1620,7 @@ pub mod __fields { pub struct logoUrl; impl cynic::schema::Field for logoUrl { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl"; + const NAME: &'static ::core::primitive::str = "logoUrl"; } impl cynic::schema::HasField<logoUrl> for super::super::Company { type Type = Option<super::super::String>; @@ -1627,7 +1628,7 @@ pub mod __fields { pub struct jobs; impl cynic::schema::Field for jobs { type Type = Option<Vec<super::super::Job>>; - const NAME: &'static str = "jobs"; + const NAME: &'static ::core::primitive::str = "jobs"; } impl cynic::schema::HasField<jobs> for super::super::Company { type Type = Option<Vec<super::super::Job>>; @@ -1636,43 +1637,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::jobs { type ArgumentType = Option<super::super::super::JobWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::jobs { type ArgumentType = Option<super::super::super::JobOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct twitter; impl cynic::schema::Field for twitter { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter"; + const NAME: &'static ::core::primitive::str = "twitter"; } impl cynic::schema::HasField<twitter> for super::super::Company { type Type = Option<super::super::String>; @@ -1680,7 +1681,7 @@ pub mod __fields { pub struct emailed; impl cynic::schema::Field for emailed { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "emailed"; + const NAME: &'static ::core::primitive::str = "emailed"; } impl cynic::schema::HasField<emailed> for super::super::Company { type Type = Option<super::super::Boolean>; @@ -1688,7 +1689,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField<createdAt> for super::super::Company { type Type = super::super::DateTime; @@ -1696,7 +1697,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField<updatedAt> for super::super::Company { type Type = super::super::DateTime; @@ -1704,7 +1705,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Company { type Type = super::super::String; @@ -1714,7 +1715,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = Option<super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1723,7 +1724,7 @@ pub mod __fields { pub struct id_not; impl cynic::schema::Field for id_not { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not"; + const NAME: &'static ::core::primitive::str = "id_not"; } impl cynic::schema::HasInputField<id_not, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1732,7 +1733,7 @@ pub mod __fields { pub struct id_in; impl cynic::schema::Field for id_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_in"; + const NAME: &'static ::core::primitive::str = "id_in"; } impl cynic::schema::HasInputField<id_in, Option<Vec<super::super::ID>>> for super::super::CompanyWhereInput @@ -1741,7 +1742,7 @@ pub mod __fields { pub struct id_not_in; impl cynic::schema::Field for id_not_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_not_in"; + const NAME: &'static ::core::primitive::str = "id_not_in"; } impl cynic::schema::HasInputField<id_not_in, Option<Vec<super::super::ID>>> for super::super::CompanyWhereInput @@ -1750,7 +1751,7 @@ pub mod __fields { pub struct id_lt; impl cynic::schema::Field for id_lt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lt"; + const NAME: &'static ::core::primitive::str = "id_lt"; } impl cynic::schema::HasInputField<id_lt, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1759,7 +1760,7 @@ pub mod __fields { pub struct id_lte; impl cynic::schema::Field for id_lte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lte"; + const NAME: &'static ::core::primitive::str = "id_lte"; } impl cynic::schema::HasInputField<id_lte, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1768,7 +1769,7 @@ pub mod __fields { pub struct id_gt; impl cynic::schema::Field for id_gt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gt"; + const NAME: &'static ::core::primitive::str = "id_gt"; } impl cynic::schema::HasInputField<id_gt, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1777,7 +1778,7 @@ pub mod __fields { pub struct id_gte; impl cynic::schema::Field for id_gte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gte"; + const NAME: &'static ::core::primitive::str = "id_gte"; } impl cynic::schema::HasInputField<id_gte, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1786,7 +1787,7 @@ pub mod __fields { pub struct id_contains; impl cynic::schema::Field for id_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_contains"; + const NAME: &'static ::core::primitive::str = "id_contains"; } impl cynic::schema::HasInputField<id_contains, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1795,7 +1796,7 @@ pub mod __fields { pub struct id_not_contains; impl cynic::schema::Field for id_not_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_contains"; + const NAME: &'static ::core::primitive::str = "id_not_contains"; } impl cynic::schema::HasInputField<id_not_contains, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1804,7 +1805,7 @@ pub mod __fields { pub struct id_starts_with; impl cynic::schema::Field for id_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_starts_with"; + const NAME: &'static ::core::primitive::str = "id_starts_with"; } impl cynic::schema::HasInputField<id_starts_with, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1813,7 +1814,7 @@ pub mod __fields { pub struct id_not_starts_with; impl cynic::schema::Field for id_not_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_starts_with"; + const NAME: &'static ::core::primitive::str = "id_not_starts_with"; } impl cynic::schema::HasInputField<id_not_starts_with, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1822,7 +1823,7 @@ pub mod __fields { pub struct id_ends_with; impl cynic::schema::Field for id_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_ends_with"; + const NAME: &'static ::core::primitive::str = "id_ends_with"; } impl cynic::schema::HasInputField<id_ends_with, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1831,7 +1832,7 @@ pub mod __fields { pub struct id_not_ends_with; impl cynic::schema::Field for id_not_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_ends_with"; + const NAME: &'static ::core::primitive::str = "id_not_ends_with"; } impl cynic::schema::HasInputField<id_not_ends_with, Option<super::super::ID>> for super::super::CompanyWhereInput @@ -1840,7 +1841,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasInputField<name, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1849,7 +1850,7 @@ pub mod __fields { pub struct name_not; impl cynic::schema::Field for name_not { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not"; + const NAME: &'static ::core::primitive::str = "name_not"; } impl cynic::schema::HasInputField<name_not, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1858,7 +1859,7 @@ pub mod __fields { pub struct name_in; impl cynic::schema::Field for name_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_in"; + const NAME: &'static ::core::primitive::str = "name_in"; } impl cynic::schema::HasInputField<name_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -1867,7 +1868,7 @@ pub mod __fields { pub struct name_not_in; impl cynic::schema::Field for name_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_not_in"; + const NAME: &'static ::core::primitive::str = "name_not_in"; } impl cynic::schema::HasInputField<name_not_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -1876,7 +1877,7 @@ pub mod __fields { pub struct name_lt; impl cynic::schema::Field for name_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lt"; + const NAME: &'static ::core::primitive::str = "name_lt"; } impl cynic::schema::HasInputField<name_lt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1885,7 +1886,7 @@ pub mod __fields { pub struct name_lte; impl cynic::schema::Field for name_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lte"; + const NAME: &'static ::core::primitive::str = "name_lte"; } impl cynic::schema::HasInputField<name_lte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1894,7 +1895,7 @@ pub mod __fields { pub struct name_gt; impl cynic::schema::Field for name_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gt"; + const NAME: &'static ::core::primitive::str = "name_gt"; } impl cynic::schema::HasInputField<name_gt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1903,7 +1904,7 @@ pub mod __fields { pub struct name_gte; impl cynic::schema::Field for name_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gte"; + const NAME: &'static ::core::primitive::str = "name_gte"; } impl cynic::schema::HasInputField<name_gte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1912,7 +1913,7 @@ pub mod __fields { pub struct name_contains; impl cynic::schema::Field for name_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_contains"; + const NAME: &'static ::core::primitive::str = "name_contains"; } impl cynic::schema::HasInputField<name_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1921,7 +1922,7 @@ pub mod __fields { pub struct name_not_contains; impl cynic::schema::Field for name_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_contains"; + const NAME: &'static ::core::primitive::str = "name_not_contains"; } impl cynic::schema::HasInputField<name_not_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1930,7 +1931,7 @@ pub mod __fields { pub struct name_starts_with; impl cynic::schema::Field for name_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_starts_with"; + const NAME: &'static ::core::primitive::str = "name_starts_with"; } impl cynic::schema::HasInputField<name_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1939,7 +1940,7 @@ pub mod __fields { pub struct name_not_starts_with; impl cynic::schema::Field for name_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_starts_with"; + const NAME: &'static ::core::primitive::str = "name_not_starts_with"; } impl cynic::schema::HasInputField<name_not_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1948,7 +1949,7 @@ pub mod __fields { pub struct name_ends_with; impl cynic::schema::Field for name_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_ends_with"; + const NAME: &'static ::core::primitive::str = "name_ends_with"; } impl cynic::schema::HasInputField<name_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1957,7 +1958,7 @@ pub mod __fields { pub struct name_not_ends_with; impl cynic::schema::Field for name_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_ends_with"; + const NAME: &'static ::core::primitive::str = "name_not_ends_with"; } impl cynic::schema::HasInputField<name_not_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1966,7 +1967,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option<super::super::String>; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1975,7 +1976,7 @@ pub mod __fields { pub struct slug_not; impl cynic::schema::Field for slug_not { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not"; + const NAME: &'static ::core::primitive::str = "slug_not"; } impl cynic::schema::HasInputField<slug_not, Option<super::super::String>> for super::super::CompanyWhereInput @@ -1984,7 +1985,7 @@ pub mod __fields { pub struct slug_in; impl cynic::schema::Field for slug_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_in"; + const NAME: &'static ::core::primitive::str = "slug_in"; } impl cynic::schema::HasInputField<slug_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -1993,7 +1994,7 @@ pub mod __fields { pub struct slug_not_in; impl cynic::schema::Field for slug_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_not_in"; + const NAME: &'static ::core::primitive::str = "slug_not_in"; } impl cynic::schema::HasInputField<slug_not_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -2002,7 +2003,7 @@ pub mod __fields { pub struct slug_lt; impl cynic::schema::Field for slug_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lt"; + const NAME: &'static ::core::primitive::str = "slug_lt"; } impl cynic::schema::HasInputField<slug_lt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2011,7 +2012,7 @@ pub mod __fields { pub struct slug_lte; impl cynic::schema::Field for slug_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lte"; + const NAME: &'static ::core::primitive::str = "slug_lte"; } impl cynic::schema::HasInputField<slug_lte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2020,7 +2021,7 @@ pub mod __fields { pub struct slug_gt; impl cynic::schema::Field for slug_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gt"; + const NAME: &'static ::core::primitive::str = "slug_gt"; } impl cynic::schema::HasInputField<slug_gt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2029,7 +2030,7 @@ pub mod __fields { pub struct slug_gte; impl cynic::schema::Field for slug_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gte"; + const NAME: &'static ::core::primitive::str = "slug_gte"; } impl cynic::schema::HasInputField<slug_gte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2038,7 +2039,7 @@ pub mod __fields { pub struct slug_contains; impl cynic::schema::Field for slug_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_contains"; + const NAME: &'static ::core::primitive::str = "slug_contains"; } impl cynic::schema::HasInputField<slug_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2047,7 +2048,7 @@ pub mod __fields { pub struct slug_not_contains; impl cynic::schema::Field for slug_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_contains"; + const NAME: &'static ::core::primitive::str = "slug_not_contains"; } impl cynic::schema::HasInputField<slug_not_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2056,7 +2057,7 @@ pub mod __fields { pub struct slug_starts_with; impl cynic::schema::Field for slug_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_starts_with"; } impl cynic::schema::HasInputField<slug_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2065,7 +2066,7 @@ pub mod __fields { pub struct slug_not_starts_with; impl cynic::schema::Field for slug_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_not_starts_with"; } impl cynic::schema::HasInputField<slug_not_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2074,7 +2075,7 @@ pub mod __fields { pub struct slug_ends_with; impl cynic::schema::Field for slug_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_ends_with"; } impl cynic::schema::HasInputField<slug_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2083,7 +2084,7 @@ pub mod __fields { pub struct slug_not_ends_with; impl cynic::schema::Field for slug_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_not_ends_with"; } impl cynic::schema::HasInputField<slug_not_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2092,7 +2093,7 @@ pub mod __fields { pub struct websiteUrl; impl cynic::schema::Field for websiteUrl { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl"; + const NAME: &'static ::core::primitive::str = "websiteUrl"; } impl cynic::schema::HasInputField<websiteUrl, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2101,7 +2102,7 @@ pub mod __fields { pub struct websiteUrl_not; impl cynic::schema::Field for websiteUrl_not { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_not"; + const NAME: &'static ::core::primitive::str = "websiteUrl_not"; } impl cynic::schema::HasInputField<websiteUrl_not, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2110,7 +2111,7 @@ pub mod __fields { pub struct websiteUrl_in; impl cynic::schema::Field for websiteUrl_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "websiteUrl_in"; + const NAME: &'static ::core::primitive::str = "websiteUrl_in"; } impl cynic::schema::HasInputField<websiteUrl_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -2119,7 +2120,7 @@ pub mod __fields { pub struct websiteUrl_not_in; impl cynic::schema::Field for websiteUrl_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "websiteUrl_not_in"; + const NAME: &'static ::core::primitive::str = "websiteUrl_not_in"; } impl cynic::schema::HasInputField<websiteUrl_not_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -2128,7 +2129,7 @@ pub mod __fields { pub struct websiteUrl_lt; impl cynic::schema::Field for websiteUrl_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_lt"; + const NAME: &'static ::core::primitive::str = "websiteUrl_lt"; } impl cynic::schema::HasInputField<websiteUrl_lt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2137,7 +2138,7 @@ pub mod __fields { pub struct websiteUrl_lte; impl cynic::schema::Field for websiteUrl_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_lte"; + const NAME: &'static ::core::primitive::str = "websiteUrl_lte"; } impl cynic::schema::HasInputField<websiteUrl_lte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2146,7 +2147,7 @@ pub mod __fields { pub struct websiteUrl_gt; impl cynic::schema::Field for websiteUrl_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_gt"; + const NAME: &'static ::core::primitive::str = "websiteUrl_gt"; } impl cynic::schema::HasInputField<websiteUrl_gt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2155,7 +2156,7 @@ pub mod __fields { pub struct websiteUrl_gte; impl cynic::schema::Field for websiteUrl_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_gte"; + const NAME: &'static ::core::primitive::str = "websiteUrl_gte"; } impl cynic::schema::HasInputField<websiteUrl_gte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2164,7 +2165,7 @@ pub mod __fields { pub struct websiteUrl_contains; impl cynic::schema::Field for websiteUrl_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_contains"; + const NAME: &'static ::core::primitive::str = "websiteUrl_contains"; } impl cynic::schema::HasInputField<websiteUrl_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2173,7 +2174,7 @@ pub mod __fields { pub struct websiteUrl_not_contains; impl cynic::schema::Field for websiteUrl_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_not_contains"; + const NAME: &'static ::core::primitive::str = "websiteUrl_not_contains"; } impl cynic::schema::HasInputField<websiteUrl_not_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2182,7 +2183,7 @@ pub mod __fields { pub struct websiteUrl_starts_with; impl cynic::schema::Field for websiteUrl_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_starts_with"; + const NAME: &'static ::core::primitive::str = "websiteUrl_starts_with"; } impl cynic::schema::HasInputField<websiteUrl_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2191,7 +2192,7 @@ pub mod __fields { pub struct websiteUrl_not_starts_with; impl cynic::schema::Field for websiteUrl_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_not_starts_with"; + const NAME: &'static ::core::primitive::str = "websiteUrl_not_starts_with"; } impl cynic::schema::HasInputField<websiteUrl_not_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2200,7 +2201,7 @@ pub mod __fields { pub struct websiteUrl_ends_with; impl cynic::schema::Field for websiteUrl_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_ends_with"; + const NAME: &'static ::core::primitive::str = "websiteUrl_ends_with"; } impl cynic::schema::HasInputField<websiteUrl_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2209,7 +2210,7 @@ pub mod __fields { pub struct websiteUrl_not_ends_with; impl cynic::schema::Field for websiteUrl_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "websiteUrl_not_ends_with"; + const NAME: &'static ::core::primitive::str = "websiteUrl_not_ends_with"; } impl cynic::schema::HasInputField<websiteUrl_not_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2218,7 +2219,7 @@ pub mod __fields { pub struct logoUrl; impl cynic::schema::Field for logoUrl { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl"; + const NAME: &'static ::core::primitive::str = "logoUrl"; } impl cynic::schema::HasInputField<logoUrl, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2227,7 +2228,7 @@ pub mod __fields { pub struct logoUrl_not; impl cynic::schema::Field for logoUrl_not { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_not"; + const NAME: &'static ::core::primitive::str = "logoUrl_not"; } impl cynic::schema::HasInputField<logoUrl_not, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2236,7 +2237,7 @@ pub mod __fields { pub struct logoUrl_in; impl cynic::schema::Field for logoUrl_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "logoUrl_in"; + const NAME: &'static ::core::primitive::str = "logoUrl_in"; } impl cynic::schema::HasInputField<logoUrl_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -2245,7 +2246,7 @@ pub mod __fields { pub struct logoUrl_not_in; impl cynic::schema::Field for logoUrl_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "logoUrl_not_in"; + const NAME: &'static ::core::primitive::str = "logoUrl_not_in"; } impl cynic::schema::HasInputField<logoUrl_not_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -2254,7 +2255,7 @@ pub mod __fields { pub struct logoUrl_lt; impl cynic::schema::Field for logoUrl_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_lt"; + const NAME: &'static ::core::primitive::str = "logoUrl_lt"; } impl cynic::schema::HasInputField<logoUrl_lt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2263,7 +2264,7 @@ pub mod __fields { pub struct logoUrl_lte; impl cynic::schema::Field for logoUrl_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_lte"; + const NAME: &'static ::core::primitive::str = "logoUrl_lte"; } impl cynic::schema::HasInputField<logoUrl_lte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2272,7 +2273,7 @@ pub mod __fields { pub struct logoUrl_gt; impl cynic::schema::Field for logoUrl_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_gt"; + const NAME: &'static ::core::primitive::str = "logoUrl_gt"; } impl cynic::schema::HasInputField<logoUrl_gt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2281,7 +2282,7 @@ pub mod __fields { pub struct logoUrl_gte; impl cynic::schema::Field for logoUrl_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_gte"; + const NAME: &'static ::core::primitive::str = "logoUrl_gte"; } impl cynic::schema::HasInputField<logoUrl_gte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2290,7 +2291,7 @@ pub mod __fields { pub struct logoUrl_contains; impl cynic::schema::Field for logoUrl_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_contains"; + const NAME: &'static ::core::primitive::str = "logoUrl_contains"; } impl cynic::schema::HasInputField<logoUrl_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2299,7 +2300,7 @@ pub mod __fields { pub struct logoUrl_not_contains; impl cynic::schema::Field for logoUrl_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_not_contains"; + const NAME: &'static ::core::primitive::str = "logoUrl_not_contains"; } impl cynic::schema::HasInputField<logoUrl_not_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2308,7 +2309,7 @@ pub mod __fields { pub struct logoUrl_starts_with; impl cynic::schema::Field for logoUrl_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_starts_with"; + const NAME: &'static ::core::primitive::str = "logoUrl_starts_with"; } impl cynic::schema::HasInputField<logoUrl_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2317,7 +2318,7 @@ pub mod __fields { pub struct logoUrl_not_starts_with; impl cynic::schema::Field for logoUrl_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_not_starts_with"; + const NAME: &'static ::core::primitive::str = "logoUrl_not_starts_with"; } impl cynic::schema::HasInputField<logoUrl_not_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2326,7 +2327,7 @@ pub mod __fields { pub struct logoUrl_ends_with; impl cynic::schema::Field for logoUrl_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_ends_with"; + const NAME: &'static ::core::primitive::str = "logoUrl_ends_with"; } impl cynic::schema::HasInputField<logoUrl_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2335,7 +2336,7 @@ pub mod __fields { pub struct logoUrl_not_ends_with; impl cynic::schema::Field for logoUrl_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "logoUrl_not_ends_with"; + const NAME: &'static ::core::primitive::str = "logoUrl_not_ends_with"; } impl cynic::schema::HasInputField<logoUrl_not_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2344,7 +2345,7 @@ pub mod __fields { pub struct jobs_every; impl cynic::schema::Field for jobs_every { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_every"; + const NAME: &'static ::core::primitive::str = "jobs_every"; } impl cynic::schema::HasInputField<jobs_every, Option<super::super::JobWhereInput>> for super::super::CompanyWhereInput @@ -2353,7 +2354,7 @@ pub mod __fields { pub struct jobs_some; impl cynic::schema::Field for jobs_some { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_some"; + const NAME: &'static ::core::primitive::str = "jobs_some"; } impl cynic::schema::HasInputField<jobs_some, Option<super::super::JobWhereInput>> for super::super::CompanyWhereInput @@ -2362,7 +2363,7 @@ pub mod __fields { pub struct jobs_none; impl cynic::schema::Field for jobs_none { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_none"; + const NAME: &'static ::core::primitive::str = "jobs_none"; } impl cynic::schema::HasInputField<jobs_none, Option<super::super::JobWhereInput>> for super::super::CompanyWhereInput @@ -2371,7 +2372,7 @@ pub mod __fields { pub struct twitter; impl cynic::schema::Field for twitter { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter"; + const NAME: &'static ::core::primitive::str = "twitter"; } impl cynic::schema::HasInputField<twitter, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2380,7 +2381,7 @@ pub mod __fields { pub struct twitter_not; impl cynic::schema::Field for twitter_not { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_not"; + const NAME: &'static ::core::primitive::str = "twitter_not"; } impl cynic::schema::HasInputField<twitter_not, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2389,7 +2390,7 @@ pub mod __fields { pub struct twitter_in; impl cynic::schema::Field for twitter_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "twitter_in"; + const NAME: &'static ::core::primitive::str = "twitter_in"; } impl cynic::schema::HasInputField<twitter_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -2398,7 +2399,7 @@ pub mod __fields { pub struct twitter_not_in; impl cynic::schema::Field for twitter_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "twitter_not_in"; + const NAME: &'static ::core::primitive::str = "twitter_not_in"; } impl cynic::schema::HasInputField<twitter_not_in, Option<Vec<super::super::String>>> for super::super::CompanyWhereInput @@ -2407,7 +2408,7 @@ pub mod __fields { pub struct twitter_lt; impl cynic::schema::Field for twitter_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_lt"; + const NAME: &'static ::core::primitive::str = "twitter_lt"; } impl cynic::schema::HasInputField<twitter_lt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2416,7 +2417,7 @@ pub mod __fields { pub struct twitter_lte; impl cynic::schema::Field for twitter_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_lte"; + const NAME: &'static ::core::primitive::str = "twitter_lte"; } impl cynic::schema::HasInputField<twitter_lte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2425,7 +2426,7 @@ pub mod __fields { pub struct twitter_gt; impl cynic::schema::Field for twitter_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_gt"; + const NAME: &'static ::core::primitive::str = "twitter_gt"; } impl cynic::schema::HasInputField<twitter_gt, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2434,7 +2435,7 @@ pub mod __fields { pub struct twitter_gte; impl cynic::schema::Field for twitter_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_gte"; + const NAME: &'static ::core::primitive::str = "twitter_gte"; } impl cynic::schema::HasInputField<twitter_gte, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2443,7 +2444,7 @@ pub mod __fields { pub struct twitter_contains; impl cynic::schema::Field for twitter_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_contains"; + const NAME: &'static ::core::primitive::str = "twitter_contains"; } impl cynic::schema::HasInputField<twitter_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2452,7 +2453,7 @@ pub mod __fields { pub struct twitter_not_contains; impl cynic::schema::Field for twitter_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_not_contains"; + const NAME: &'static ::core::primitive::str = "twitter_not_contains"; } impl cynic::schema::HasInputField<twitter_not_contains, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2461,7 +2462,7 @@ pub mod __fields { pub struct twitter_starts_with; impl cynic::schema::Field for twitter_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_starts_with"; + const NAME: &'static ::core::primitive::str = "twitter_starts_with"; } impl cynic::schema::HasInputField<twitter_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2470,7 +2471,7 @@ pub mod __fields { pub struct twitter_not_starts_with; impl cynic::schema::Field for twitter_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_not_starts_with"; + const NAME: &'static ::core::primitive::str = "twitter_not_starts_with"; } impl cynic::schema::HasInputField<twitter_not_starts_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2479,7 +2480,7 @@ pub mod __fields { pub struct twitter_ends_with; impl cynic::schema::Field for twitter_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_ends_with"; + const NAME: &'static ::core::primitive::str = "twitter_ends_with"; } impl cynic::schema::HasInputField<twitter_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2488,7 +2489,7 @@ pub mod __fields { pub struct twitter_not_ends_with; impl cynic::schema::Field for twitter_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "twitter_not_ends_with"; + const NAME: &'static ::core::primitive::str = "twitter_not_ends_with"; } impl cynic::schema::HasInputField<twitter_not_ends_with, Option<super::super::String>> for super::super::CompanyWhereInput @@ -2497,7 +2498,7 @@ pub mod __fields { pub struct emailed; impl cynic::schema::Field for emailed { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "emailed"; + const NAME: &'static ::core::primitive::str = "emailed"; } impl cynic::schema::HasInputField<emailed, Option<super::super::Boolean>> for super::super::CompanyWhereInput @@ -2506,7 +2507,7 @@ pub mod __fields { pub struct emailed_not; impl cynic::schema::Field for emailed_not { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "emailed_not"; + const NAME: &'static ::core::primitive::str = "emailed_not"; } impl cynic::schema::HasInputField<emailed_not, Option<super::super::Boolean>> for super::super::CompanyWhereInput @@ -2515,7 +2516,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasInputField<createdAt, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2524,7 +2525,7 @@ pub mod __fields { pub struct createdAt_not; impl cynic::schema::Field for createdAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_not"; + const NAME: &'static ::core::primitive::str = "createdAt_not"; } impl cynic::schema::HasInputField<createdAt_not, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2533,7 +2534,7 @@ pub mod __fields { pub struct createdAt_in; impl cynic::schema::Field for createdAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_in"; + const NAME: &'static ::core::primitive::str = "createdAt_in"; } impl cynic::schema::HasInputField<createdAt_in, Option<Vec<super::super::DateTime>>> for super::super::CompanyWhereInput @@ -2542,7 +2543,7 @@ pub mod __fields { pub struct createdAt_not_in; impl cynic::schema::Field for createdAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_not_in"; + const NAME: &'static ::core::primitive::str = "createdAt_not_in"; } impl cynic::schema::HasInputField<createdAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::CompanyWhereInput @@ -2551,7 +2552,7 @@ pub mod __fields { pub struct createdAt_lt; impl cynic::schema::Field for createdAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lt"; + const NAME: &'static ::core::primitive::str = "createdAt_lt"; } impl cynic::schema::HasInputField<createdAt_lt, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2560,7 +2561,7 @@ pub mod __fields { pub struct createdAt_lte; impl cynic::schema::Field for createdAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lte"; + const NAME: &'static ::core::primitive::str = "createdAt_lte"; } impl cynic::schema::HasInputField<createdAt_lte, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2569,7 +2570,7 @@ pub mod __fields { pub struct createdAt_gt; impl cynic::schema::Field for createdAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gt"; + const NAME: &'static ::core::primitive::str = "createdAt_gt"; } impl cynic::schema::HasInputField<createdAt_gt, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2578,7 +2579,7 @@ pub mod __fields { pub struct createdAt_gte; impl cynic::schema::Field for createdAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gte"; + const NAME: &'static ::core::primitive::str = "createdAt_gte"; } impl cynic::schema::HasInputField<createdAt_gte, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2587,7 +2588,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasInputField<updatedAt, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2596,7 +2597,7 @@ pub mod __fields { pub struct updatedAt_not; impl cynic::schema::Field for updatedAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_not"; + const NAME: &'static ::core::primitive::str = "updatedAt_not"; } impl cynic::schema::HasInputField<updatedAt_not, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2605,7 +2606,7 @@ pub mod __fields { pub struct updatedAt_in; impl cynic::schema::Field for updatedAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_in"; } impl cynic::schema::HasInputField<updatedAt_in, Option<Vec<super::super::DateTime>>> for super::super::CompanyWhereInput @@ -2614,7 +2615,7 @@ pub mod __fields { pub struct updatedAt_not_in; impl cynic::schema::Field for updatedAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_not_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_not_in"; } impl cynic::schema::HasInputField<updatedAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::CompanyWhereInput @@ -2623,7 +2624,7 @@ pub mod __fields { pub struct updatedAt_lt; impl cynic::schema::Field for updatedAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lt"; + const NAME: &'static ::core::primitive::str = "updatedAt_lt"; } impl cynic::schema::HasInputField<updatedAt_lt, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2632,7 +2633,7 @@ pub mod __fields { pub struct updatedAt_lte; impl cynic::schema::Field for updatedAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lte"; + const NAME: &'static ::core::primitive::str = "updatedAt_lte"; } impl cynic::schema::HasInputField<updatedAt_lte, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2641,7 +2642,7 @@ pub mod __fields { pub struct updatedAt_gt; impl cynic::schema::Field for updatedAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gt"; + const NAME: &'static ::core::primitive::str = "updatedAt_gt"; } impl cynic::schema::HasInputField<updatedAt_gt, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2650,7 +2651,7 @@ pub mod __fields { pub struct updatedAt_gte; impl cynic::schema::Field for updatedAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gte"; + const NAME: &'static ::core::primitive::str = "updatedAt_gte"; } impl cynic::schema::HasInputField<updatedAt_gte, Option<super::super::DateTime>> for super::super::CompanyWhereInput @@ -2659,7 +2660,7 @@ pub mod __fields { pub struct AND; impl cynic::schema::Field for AND { type Type = Option<Vec<super::super::CompanyWhereInput>>; - const NAME: &'static str = "AND"; + const NAME: &'static ::core::primitive::str = "AND"; } impl cynic::schema::HasInputField<AND, Option<Vec<super::super::CompanyWhereInput>>> for super::super::CompanyWhereInput @@ -2668,7 +2669,7 @@ pub mod __fields { pub struct OR; impl cynic::schema::Field for OR { type Type = Option<Vec<super::super::CompanyWhereInput>>; - const NAME: &'static str = "OR"; + const NAME: &'static ::core::primitive::str = "OR"; } impl cynic::schema::HasInputField<OR, Option<Vec<super::super::CompanyWhereInput>>> for super::super::CompanyWhereInput @@ -2677,7 +2678,7 @@ pub mod __fields { pub struct NOT; impl cynic::schema::Field for NOT { type Type = Option<Vec<super::super::CompanyWhereInput>>; - const NAME: &'static str = "NOT"; + const NAME: &'static ::core::primitive::str = "NOT"; } impl cynic::schema::HasInputField<NOT, Option<Vec<super::super::CompanyWhereInput>>> for super::super::CompanyWhereInput @@ -2688,7 +2689,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Country { type Type = super::super::ID; @@ -2696,7 +2697,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Country { type Type = super::super::String; @@ -2704,7 +2705,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField<slug> for super::super::Country { type Type = super::super::String; @@ -2712,7 +2713,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = super::super::String; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasField<r#type> for super::super::Country { type Type = super::super::String; @@ -2720,7 +2721,7 @@ pub mod __fields { pub struct isoCode; impl cynic::schema::Field for isoCode { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode"; + const NAME: &'static ::core::primitive::str = "isoCode"; } impl cynic::schema::HasField<isoCode> for super::super::Country { type Type = Option<super::super::String>; @@ -2728,7 +2729,7 @@ pub mod __fields { pub struct cities; impl cynic::schema::Field for cities { type Type = Option<Vec<super::super::City>>; - const NAME: &'static str = "cities"; + const NAME: &'static ::core::primitive::str = "cities"; } impl cynic::schema::HasField<cities> for super::super::Country { type Type = Option<Vec<super::super::City>>; @@ -2737,43 +2738,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::cities { type ArgumentType = Option<super::super::super::CityWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::cities { type ArgumentType = Option<super::super::super::CityOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::cities { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::cities { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::cities { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::cities { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::cities { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct jobs; impl cynic::schema::Field for jobs { type Type = Option<Vec<super::super::Job>>; - const NAME: &'static str = "jobs"; + const NAME: &'static ::core::primitive::str = "jobs"; } impl cynic::schema::HasField<jobs> for super::super::Country { type Type = Option<Vec<super::super::Job>>; @@ -2782,43 +2783,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::jobs { type ArgumentType = Option<super::super::super::JobWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::jobs { type ArgumentType = Option<super::super::super::JobOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField<createdAt> for super::super::Country { type Type = super::super::DateTime; @@ -2826,7 +2827,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField<updatedAt> for super::super::Country { type Type = super::super::DateTime; @@ -2834,7 +2835,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Country { type Type = super::super::String; @@ -2844,7 +2845,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = Option<super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2853,7 +2854,7 @@ pub mod __fields { pub struct id_not; impl cynic::schema::Field for id_not { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not"; + const NAME: &'static ::core::primitive::str = "id_not"; } impl cynic::schema::HasInputField<id_not, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2862,7 +2863,7 @@ pub mod __fields { pub struct id_in; impl cynic::schema::Field for id_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_in"; + const NAME: &'static ::core::primitive::str = "id_in"; } impl cynic::schema::HasInputField<id_in, Option<Vec<super::super::ID>>> for super::super::CountryWhereInput @@ -2871,7 +2872,7 @@ pub mod __fields { pub struct id_not_in; impl cynic::schema::Field for id_not_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_not_in"; + const NAME: &'static ::core::primitive::str = "id_not_in"; } impl cynic::schema::HasInputField<id_not_in, Option<Vec<super::super::ID>>> for super::super::CountryWhereInput @@ -2880,7 +2881,7 @@ pub mod __fields { pub struct id_lt; impl cynic::schema::Field for id_lt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lt"; + const NAME: &'static ::core::primitive::str = "id_lt"; } impl cynic::schema::HasInputField<id_lt, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2889,7 +2890,7 @@ pub mod __fields { pub struct id_lte; impl cynic::schema::Field for id_lte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lte"; + const NAME: &'static ::core::primitive::str = "id_lte"; } impl cynic::schema::HasInputField<id_lte, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2898,7 +2899,7 @@ pub mod __fields { pub struct id_gt; impl cynic::schema::Field for id_gt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gt"; + const NAME: &'static ::core::primitive::str = "id_gt"; } impl cynic::schema::HasInputField<id_gt, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2907,7 +2908,7 @@ pub mod __fields { pub struct id_gte; impl cynic::schema::Field for id_gte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gte"; + const NAME: &'static ::core::primitive::str = "id_gte"; } impl cynic::schema::HasInputField<id_gte, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2916,7 +2917,7 @@ pub mod __fields { pub struct id_contains; impl cynic::schema::Field for id_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_contains"; + const NAME: &'static ::core::primitive::str = "id_contains"; } impl cynic::schema::HasInputField<id_contains, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2925,7 +2926,7 @@ pub mod __fields { pub struct id_not_contains; impl cynic::schema::Field for id_not_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_contains"; + const NAME: &'static ::core::primitive::str = "id_not_contains"; } impl cynic::schema::HasInputField<id_not_contains, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2934,7 +2935,7 @@ pub mod __fields { pub struct id_starts_with; impl cynic::schema::Field for id_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_starts_with"; + const NAME: &'static ::core::primitive::str = "id_starts_with"; } impl cynic::schema::HasInputField<id_starts_with, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2943,7 +2944,7 @@ pub mod __fields { pub struct id_not_starts_with; impl cynic::schema::Field for id_not_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_starts_with"; + const NAME: &'static ::core::primitive::str = "id_not_starts_with"; } impl cynic::schema::HasInputField<id_not_starts_with, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2952,7 +2953,7 @@ pub mod __fields { pub struct id_ends_with; impl cynic::schema::Field for id_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_ends_with"; + const NAME: &'static ::core::primitive::str = "id_ends_with"; } impl cynic::schema::HasInputField<id_ends_with, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2961,7 +2962,7 @@ pub mod __fields { pub struct id_not_ends_with; impl cynic::schema::Field for id_not_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_ends_with"; + const NAME: &'static ::core::primitive::str = "id_not_ends_with"; } impl cynic::schema::HasInputField<id_not_ends_with, Option<super::super::ID>> for super::super::CountryWhereInput @@ -2970,7 +2971,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasInputField<name, Option<super::super::String>> for super::super::CountryWhereInput @@ -2979,7 +2980,7 @@ pub mod __fields { pub struct name_not; impl cynic::schema::Field for name_not { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not"; + const NAME: &'static ::core::primitive::str = "name_not"; } impl cynic::schema::HasInputField<name_not, Option<super::super::String>> for super::super::CountryWhereInput @@ -2988,7 +2989,7 @@ pub mod __fields { pub struct name_in; impl cynic::schema::Field for name_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_in"; + const NAME: &'static ::core::primitive::str = "name_in"; } impl cynic::schema::HasInputField<name_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -2997,7 +2998,7 @@ pub mod __fields { pub struct name_not_in; impl cynic::schema::Field for name_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_not_in"; + const NAME: &'static ::core::primitive::str = "name_not_in"; } impl cynic::schema::HasInputField<name_not_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -3006,7 +3007,7 @@ pub mod __fields { pub struct name_lt; impl cynic::schema::Field for name_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lt"; + const NAME: &'static ::core::primitive::str = "name_lt"; } impl cynic::schema::HasInputField<name_lt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3015,7 +3016,7 @@ pub mod __fields { pub struct name_lte; impl cynic::schema::Field for name_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lte"; + const NAME: &'static ::core::primitive::str = "name_lte"; } impl cynic::schema::HasInputField<name_lte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3024,7 +3025,7 @@ pub mod __fields { pub struct name_gt; impl cynic::schema::Field for name_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gt"; + const NAME: &'static ::core::primitive::str = "name_gt"; } impl cynic::schema::HasInputField<name_gt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3033,7 +3034,7 @@ pub mod __fields { pub struct name_gte; impl cynic::schema::Field for name_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gte"; + const NAME: &'static ::core::primitive::str = "name_gte"; } impl cynic::schema::HasInputField<name_gte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3042,7 +3043,7 @@ pub mod __fields { pub struct name_contains; impl cynic::schema::Field for name_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_contains"; + const NAME: &'static ::core::primitive::str = "name_contains"; } impl cynic::schema::HasInputField<name_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3051,7 +3052,7 @@ pub mod __fields { pub struct name_not_contains; impl cynic::schema::Field for name_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_contains"; + const NAME: &'static ::core::primitive::str = "name_not_contains"; } impl cynic::schema::HasInputField<name_not_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3060,7 +3061,7 @@ pub mod __fields { pub struct name_starts_with; impl cynic::schema::Field for name_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_starts_with"; + const NAME: &'static ::core::primitive::str = "name_starts_with"; } impl cynic::schema::HasInputField<name_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3069,7 +3070,7 @@ pub mod __fields { pub struct name_not_starts_with; impl cynic::schema::Field for name_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_starts_with"; + const NAME: &'static ::core::primitive::str = "name_not_starts_with"; } impl cynic::schema::HasInputField<name_not_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3078,7 +3079,7 @@ pub mod __fields { pub struct name_ends_with; impl cynic::schema::Field for name_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_ends_with"; + const NAME: &'static ::core::primitive::str = "name_ends_with"; } impl cynic::schema::HasInputField<name_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3087,7 +3088,7 @@ pub mod __fields { pub struct name_not_ends_with; impl cynic::schema::Field for name_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_ends_with"; + const NAME: &'static ::core::primitive::str = "name_not_ends_with"; } impl cynic::schema::HasInputField<name_not_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3096,7 +3097,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option<super::super::String>; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, Option<super::super::String>> for super::super::CountryWhereInput @@ -3105,7 +3106,7 @@ pub mod __fields { pub struct slug_not; impl cynic::schema::Field for slug_not { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not"; + const NAME: &'static ::core::primitive::str = "slug_not"; } impl cynic::schema::HasInputField<slug_not, Option<super::super::String>> for super::super::CountryWhereInput @@ -3114,7 +3115,7 @@ pub mod __fields { pub struct slug_in; impl cynic::schema::Field for slug_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_in"; + const NAME: &'static ::core::primitive::str = "slug_in"; } impl cynic::schema::HasInputField<slug_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -3123,7 +3124,7 @@ pub mod __fields { pub struct slug_not_in; impl cynic::schema::Field for slug_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_not_in"; + const NAME: &'static ::core::primitive::str = "slug_not_in"; } impl cynic::schema::HasInputField<slug_not_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -3132,7 +3133,7 @@ pub mod __fields { pub struct slug_lt; impl cynic::schema::Field for slug_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lt"; + const NAME: &'static ::core::primitive::str = "slug_lt"; } impl cynic::schema::HasInputField<slug_lt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3141,7 +3142,7 @@ pub mod __fields { pub struct slug_lte; impl cynic::schema::Field for slug_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lte"; + const NAME: &'static ::core::primitive::str = "slug_lte"; } impl cynic::schema::HasInputField<slug_lte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3150,7 +3151,7 @@ pub mod __fields { pub struct slug_gt; impl cynic::schema::Field for slug_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gt"; + const NAME: &'static ::core::primitive::str = "slug_gt"; } impl cynic::schema::HasInputField<slug_gt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3159,7 +3160,7 @@ pub mod __fields { pub struct slug_gte; impl cynic::schema::Field for slug_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gte"; + const NAME: &'static ::core::primitive::str = "slug_gte"; } impl cynic::schema::HasInputField<slug_gte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3168,7 +3169,7 @@ pub mod __fields { pub struct slug_contains; impl cynic::schema::Field for slug_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_contains"; + const NAME: &'static ::core::primitive::str = "slug_contains"; } impl cynic::schema::HasInputField<slug_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3177,7 +3178,7 @@ pub mod __fields { pub struct slug_not_contains; impl cynic::schema::Field for slug_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_contains"; + const NAME: &'static ::core::primitive::str = "slug_not_contains"; } impl cynic::schema::HasInputField<slug_not_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3186,7 +3187,7 @@ pub mod __fields { pub struct slug_starts_with; impl cynic::schema::Field for slug_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_starts_with"; } impl cynic::schema::HasInputField<slug_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3195,7 +3196,7 @@ pub mod __fields { pub struct slug_not_starts_with; impl cynic::schema::Field for slug_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_not_starts_with"; } impl cynic::schema::HasInputField<slug_not_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3204,7 +3205,7 @@ pub mod __fields { pub struct slug_ends_with; impl cynic::schema::Field for slug_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_ends_with"; } impl cynic::schema::HasInputField<slug_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3213,7 +3214,7 @@ pub mod __fields { pub struct slug_not_ends_with; impl cynic::schema::Field for slug_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_not_ends_with"; } impl cynic::schema::HasInputField<slug_not_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3222,7 +3223,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = Option<super::super::String>; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasInputField<r#type, Option<super::super::String>> for super::super::CountryWhereInput @@ -3231,7 +3232,7 @@ pub mod __fields { pub struct type_not; impl cynic::schema::Field for type_not { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not"; + const NAME: &'static ::core::primitive::str = "type_not"; } impl cynic::schema::HasInputField<type_not, Option<super::super::String>> for super::super::CountryWhereInput @@ -3240,7 +3241,7 @@ pub mod __fields { pub struct type_in; impl cynic::schema::Field for type_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "type_in"; + const NAME: &'static ::core::primitive::str = "type_in"; } impl cynic::schema::HasInputField<type_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -3249,7 +3250,7 @@ pub mod __fields { pub struct type_not_in; impl cynic::schema::Field for type_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "type_not_in"; + const NAME: &'static ::core::primitive::str = "type_not_in"; } impl cynic::schema::HasInputField<type_not_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -3258,7 +3259,7 @@ pub mod __fields { pub struct type_lt; impl cynic::schema::Field for type_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "type_lt"; + const NAME: &'static ::core::primitive::str = "type_lt"; } impl cynic::schema::HasInputField<type_lt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3267,7 +3268,7 @@ pub mod __fields { pub struct type_lte; impl cynic::schema::Field for type_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "type_lte"; + const NAME: &'static ::core::primitive::str = "type_lte"; } impl cynic::schema::HasInputField<type_lte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3276,7 +3277,7 @@ pub mod __fields { pub struct type_gt; impl cynic::schema::Field for type_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "type_gt"; + const NAME: &'static ::core::primitive::str = "type_gt"; } impl cynic::schema::HasInputField<type_gt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3285,7 +3286,7 @@ pub mod __fields { pub struct type_gte; impl cynic::schema::Field for type_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "type_gte"; + const NAME: &'static ::core::primitive::str = "type_gte"; } impl cynic::schema::HasInputField<type_gte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3294,7 +3295,7 @@ pub mod __fields { pub struct type_contains; impl cynic::schema::Field for type_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "type_contains"; + const NAME: &'static ::core::primitive::str = "type_contains"; } impl cynic::schema::HasInputField<type_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3303,7 +3304,7 @@ pub mod __fields { pub struct type_not_contains; impl cynic::schema::Field for type_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not_contains"; + const NAME: &'static ::core::primitive::str = "type_not_contains"; } impl cynic::schema::HasInputField<type_not_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3312,7 +3313,7 @@ pub mod __fields { pub struct type_starts_with; impl cynic::schema::Field for type_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_starts_with"; + const NAME: &'static ::core::primitive::str = "type_starts_with"; } impl cynic::schema::HasInputField<type_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3321,7 +3322,7 @@ pub mod __fields { pub struct type_not_starts_with; impl cynic::schema::Field for type_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not_starts_with"; + const NAME: &'static ::core::primitive::str = "type_not_starts_with"; } impl cynic::schema::HasInputField<type_not_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3330,7 +3331,7 @@ pub mod __fields { pub struct type_ends_with; impl cynic::schema::Field for type_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_ends_with"; + const NAME: &'static ::core::primitive::str = "type_ends_with"; } impl cynic::schema::HasInputField<type_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3339,7 +3340,7 @@ pub mod __fields { pub struct type_not_ends_with; impl cynic::schema::Field for type_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not_ends_with"; + const NAME: &'static ::core::primitive::str = "type_not_ends_with"; } impl cynic::schema::HasInputField<type_not_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3348,7 +3349,7 @@ pub mod __fields { pub struct isoCode; impl cynic::schema::Field for isoCode { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode"; + const NAME: &'static ::core::primitive::str = "isoCode"; } impl cynic::schema::HasInputField<isoCode, Option<super::super::String>> for super::super::CountryWhereInput @@ -3357,7 +3358,7 @@ pub mod __fields { pub struct isoCode_not; impl cynic::schema::Field for isoCode_not { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_not"; + const NAME: &'static ::core::primitive::str = "isoCode_not"; } impl cynic::schema::HasInputField<isoCode_not, Option<super::super::String>> for super::super::CountryWhereInput @@ -3366,7 +3367,7 @@ pub mod __fields { pub struct isoCode_in; impl cynic::schema::Field for isoCode_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "isoCode_in"; + const NAME: &'static ::core::primitive::str = "isoCode_in"; } impl cynic::schema::HasInputField<isoCode_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -3375,7 +3376,7 @@ pub mod __fields { pub struct isoCode_not_in; impl cynic::schema::Field for isoCode_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "isoCode_not_in"; + const NAME: &'static ::core::primitive::str = "isoCode_not_in"; } impl cynic::schema::HasInputField<isoCode_not_in, Option<Vec<super::super::String>>> for super::super::CountryWhereInput @@ -3384,7 +3385,7 @@ pub mod __fields { pub struct isoCode_lt; impl cynic::schema::Field for isoCode_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_lt"; + const NAME: &'static ::core::primitive::str = "isoCode_lt"; } impl cynic::schema::HasInputField<isoCode_lt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3393,7 +3394,7 @@ pub mod __fields { pub struct isoCode_lte; impl cynic::schema::Field for isoCode_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_lte"; + const NAME: &'static ::core::primitive::str = "isoCode_lte"; } impl cynic::schema::HasInputField<isoCode_lte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3402,7 +3403,7 @@ pub mod __fields { pub struct isoCode_gt; impl cynic::schema::Field for isoCode_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_gt"; + const NAME: &'static ::core::primitive::str = "isoCode_gt"; } impl cynic::schema::HasInputField<isoCode_gt, Option<super::super::String>> for super::super::CountryWhereInput @@ -3411,7 +3412,7 @@ pub mod __fields { pub struct isoCode_gte; impl cynic::schema::Field for isoCode_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_gte"; + const NAME: &'static ::core::primitive::str = "isoCode_gte"; } impl cynic::schema::HasInputField<isoCode_gte, Option<super::super::String>> for super::super::CountryWhereInput @@ -3420,7 +3421,7 @@ pub mod __fields { pub struct isoCode_contains; impl cynic::schema::Field for isoCode_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_contains"; + const NAME: &'static ::core::primitive::str = "isoCode_contains"; } impl cynic::schema::HasInputField<isoCode_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3429,7 +3430,7 @@ pub mod __fields { pub struct isoCode_not_contains; impl cynic::schema::Field for isoCode_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_not_contains"; + const NAME: &'static ::core::primitive::str = "isoCode_not_contains"; } impl cynic::schema::HasInputField<isoCode_not_contains, Option<super::super::String>> for super::super::CountryWhereInput @@ -3438,7 +3439,7 @@ pub mod __fields { pub struct isoCode_starts_with; impl cynic::schema::Field for isoCode_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_starts_with"; + const NAME: &'static ::core::primitive::str = "isoCode_starts_with"; } impl cynic::schema::HasInputField<isoCode_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3447,7 +3448,7 @@ pub mod __fields { pub struct isoCode_not_starts_with; impl cynic::schema::Field for isoCode_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_not_starts_with"; + const NAME: &'static ::core::primitive::str = "isoCode_not_starts_with"; } impl cynic::schema::HasInputField<isoCode_not_starts_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3456,7 +3457,7 @@ pub mod __fields { pub struct isoCode_ends_with; impl cynic::schema::Field for isoCode_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_ends_with"; + const NAME: &'static ::core::primitive::str = "isoCode_ends_with"; } impl cynic::schema::HasInputField<isoCode_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3465,7 +3466,7 @@ pub mod __fields { pub struct isoCode_not_ends_with; impl cynic::schema::Field for isoCode_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "isoCode_not_ends_with"; + const NAME: &'static ::core::primitive::str = "isoCode_not_ends_with"; } impl cynic::schema::HasInputField<isoCode_not_ends_with, Option<super::super::String>> for super::super::CountryWhereInput @@ -3474,7 +3475,7 @@ pub mod __fields { pub struct cities_every; impl cynic::schema::Field for cities_every { type Type = Option<super::super::CityWhereInput>; - const NAME: &'static str = "cities_every"; + const NAME: &'static ::core::primitive::str = "cities_every"; } impl cynic::schema::HasInputField<cities_every, Option<super::super::CityWhereInput>> for super::super::CountryWhereInput @@ -3483,7 +3484,7 @@ pub mod __fields { pub struct cities_some; impl cynic::schema::Field for cities_some { type Type = Option<super::super::CityWhereInput>; - const NAME: &'static str = "cities_some"; + const NAME: &'static ::core::primitive::str = "cities_some"; } impl cynic::schema::HasInputField<cities_some, Option<super::super::CityWhereInput>> for super::super::CountryWhereInput @@ -3492,7 +3493,7 @@ pub mod __fields { pub struct cities_none; impl cynic::schema::Field for cities_none { type Type = Option<super::super::CityWhereInput>; - const NAME: &'static str = "cities_none"; + const NAME: &'static ::core::primitive::str = "cities_none"; } impl cynic::schema::HasInputField<cities_none, Option<super::super::CityWhereInput>> for super::super::CountryWhereInput @@ -3501,7 +3502,7 @@ pub mod __fields { pub struct jobs_every; impl cynic::schema::Field for jobs_every { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_every"; + const NAME: &'static ::core::primitive::str = "jobs_every"; } impl cynic::schema::HasInputField<jobs_every, Option<super::super::JobWhereInput>> for super::super::CountryWhereInput @@ -3510,7 +3511,7 @@ pub mod __fields { pub struct jobs_some; impl cynic::schema::Field for jobs_some { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_some"; + const NAME: &'static ::core::primitive::str = "jobs_some"; } impl cynic::schema::HasInputField<jobs_some, Option<super::super::JobWhereInput>> for super::super::CountryWhereInput @@ -3519,7 +3520,7 @@ pub mod __fields { pub struct jobs_none; impl cynic::schema::Field for jobs_none { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_none"; + const NAME: &'static ::core::primitive::str = "jobs_none"; } impl cynic::schema::HasInputField<jobs_none, Option<super::super::JobWhereInput>> for super::super::CountryWhereInput @@ -3528,7 +3529,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasInputField<createdAt, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3537,7 +3538,7 @@ pub mod __fields { pub struct createdAt_not; impl cynic::schema::Field for createdAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_not"; + const NAME: &'static ::core::primitive::str = "createdAt_not"; } impl cynic::schema::HasInputField<createdAt_not, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3546,7 +3547,7 @@ pub mod __fields { pub struct createdAt_in; impl cynic::schema::Field for createdAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_in"; + const NAME: &'static ::core::primitive::str = "createdAt_in"; } impl cynic::schema::HasInputField<createdAt_in, Option<Vec<super::super::DateTime>>> for super::super::CountryWhereInput @@ -3555,7 +3556,7 @@ pub mod __fields { pub struct createdAt_not_in; impl cynic::schema::Field for createdAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_not_in"; + const NAME: &'static ::core::primitive::str = "createdAt_not_in"; } impl cynic::schema::HasInputField<createdAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::CountryWhereInput @@ -3564,7 +3565,7 @@ pub mod __fields { pub struct createdAt_lt; impl cynic::schema::Field for createdAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lt"; + const NAME: &'static ::core::primitive::str = "createdAt_lt"; } impl cynic::schema::HasInputField<createdAt_lt, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3573,7 +3574,7 @@ pub mod __fields { pub struct createdAt_lte; impl cynic::schema::Field for createdAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lte"; + const NAME: &'static ::core::primitive::str = "createdAt_lte"; } impl cynic::schema::HasInputField<createdAt_lte, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3582,7 +3583,7 @@ pub mod __fields { pub struct createdAt_gt; impl cynic::schema::Field for createdAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gt"; + const NAME: &'static ::core::primitive::str = "createdAt_gt"; } impl cynic::schema::HasInputField<createdAt_gt, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3591,7 +3592,7 @@ pub mod __fields { pub struct createdAt_gte; impl cynic::schema::Field for createdAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gte"; + const NAME: &'static ::core::primitive::str = "createdAt_gte"; } impl cynic::schema::HasInputField<createdAt_gte, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3600,7 +3601,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasInputField<updatedAt, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3609,7 +3610,7 @@ pub mod __fields { pub struct updatedAt_not; impl cynic::schema::Field for updatedAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_not"; + const NAME: &'static ::core::primitive::str = "updatedAt_not"; } impl cynic::schema::HasInputField<updatedAt_not, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3618,7 +3619,7 @@ pub mod __fields { pub struct updatedAt_in; impl cynic::schema::Field for updatedAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_in"; } impl cynic::schema::HasInputField<updatedAt_in, Option<Vec<super::super::DateTime>>> for super::super::CountryWhereInput @@ -3627,7 +3628,7 @@ pub mod __fields { pub struct updatedAt_not_in; impl cynic::schema::Field for updatedAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_not_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_not_in"; } impl cynic::schema::HasInputField<updatedAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::CountryWhereInput @@ -3636,7 +3637,7 @@ pub mod __fields { pub struct updatedAt_lt; impl cynic::schema::Field for updatedAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lt"; + const NAME: &'static ::core::primitive::str = "updatedAt_lt"; } impl cynic::schema::HasInputField<updatedAt_lt, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3645,7 +3646,7 @@ pub mod __fields { pub struct updatedAt_lte; impl cynic::schema::Field for updatedAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lte"; + const NAME: &'static ::core::primitive::str = "updatedAt_lte"; } impl cynic::schema::HasInputField<updatedAt_lte, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3654,7 +3655,7 @@ pub mod __fields { pub struct updatedAt_gt; impl cynic::schema::Field for updatedAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gt"; + const NAME: &'static ::core::primitive::str = "updatedAt_gt"; } impl cynic::schema::HasInputField<updatedAt_gt, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3663,7 +3664,7 @@ pub mod __fields { pub struct updatedAt_gte; impl cynic::schema::Field for updatedAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gte"; + const NAME: &'static ::core::primitive::str = "updatedAt_gte"; } impl cynic::schema::HasInputField<updatedAt_gte, Option<super::super::DateTime>> for super::super::CountryWhereInput @@ -3672,7 +3673,7 @@ pub mod __fields { pub struct AND; impl cynic::schema::Field for AND { type Type = Option<Vec<super::super::CountryWhereInput>>; - const NAME: &'static str = "AND"; + const NAME: &'static ::core::primitive::str = "AND"; } impl cynic::schema::HasInputField<AND, Option<Vec<super::super::CountryWhereInput>>> for super::super::CountryWhereInput @@ -3681,7 +3682,7 @@ pub mod __fields { pub struct OR; impl cynic::schema::Field for OR { type Type = Option<Vec<super::super::CountryWhereInput>>; - const NAME: &'static str = "OR"; + const NAME: &'static ::core::primitive::str = "OR"; } impl cynic::schema::HasInputField<OR, Option<Vec<super::super::CountryWhereInput>>> for super::super::CountryWhereInput @@ -3690,7 +3691,7 @@ pub mod __fields { pub struct NOT; impl cynic::schema::Field for NOT { type Type = Option<Vec<super::super::CountryWhereInput>>; - const NAME: &'static str = "NOT"; + const NAME: &'static ::core::primitive::str = "NOT"; } impl cynic::schema::HasInputField<NOT, Option<Vec<super::super::CountryWhereInput>>> for super::super::CountryWhereInput @@ -3701,7 +3702,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Job { type Type = super::super::ID; @@ -3709,7 +3710,7 @@ pub mod __fields { pub struct title; impl cynic::schema::Field for title { type Type = super::super::String; - const NAME: &'static str = "title"; + const NAME: &'static ::core::primitive::str = "title"; } impl cynic::schema::HasField<title> for super::super::Job { type Type = super::super::String; @@ -3717,7 +3718,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField<slug> for super::super::Job { type Type = super::super::String; @@ -3725,7 +3726,7 @@ pub mod __fields { pub struct commitment; impl cynic::schema::Field for commitment { type Type = super::super::Commitment; - const NAME: &'static str = "commitment"; + const NAME: &'static ::core::primitive::str = "commitment"; } impl cynic::schema::HasField<commitment> for super::super::Job { type Type = super::super::Commitment; @@ -3733,7 +3734,7 @@ pub mod __fields { pub struct cities; impl cynic::schema::Field for cities { type Type = Option<Vec<super::super::City>>; - const NAME: &'static str = "cities"; + const NAME: &'static ::core::primitive::str = "cities"; } impl cynic::schema::HasField<cities> for super::super::Job { type Type = Option<Vec<super::super::City>>; @@ -3742,43 +3743,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::cities { type ArgumentType = Option<super::super::super::CityWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::cities { type ArgumentType = Option<super::super::super::CityOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::cities { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::cities { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::cities { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::cities { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::cities { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct countries; impl cynic::schema::Field for countries { type Type = Option<Vec<super::super::Country>>; - const NAME: &'static str = "countries"; + const NAME: &'static ::core::primitive::str = "countries"; } impl cynic::schema::HasField<countries> for super::super::Job { type Type = Option<Vec<super::super::Country>>; @@ -3787,43 +3788,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::countries { type ArgumentType = Option<super::super::super::CountryWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::countries { type ArgumentType = Option<super::super::super::CountryOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::countries { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::countries { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::countries { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::countries { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::countries { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct remotes; impl cynic::schema::Field for remotes { type Type = Option<Vec<super::super::Remote>>; - const NAME: &'static str = "remotes"; + const NAME: &'static ::core::primitive::str = "remotes"; } impl cynic::schema::HasField<remotes> for super::super::Job { type Type = Option<Vec<super::super::Remote>>; @@ -3832,43 +3833,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::remotes { type ArgumentType = Option<super::super::super::RemoteWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::remotes { type ArgumentType = Option<super::super::super::RemoteOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::remotes { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::remotes { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::remotes { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::remotes { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::remotes { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct description; impl cynic::schema::Field for description { type Type = Option<super::super::String>; - const NAME: &'static str = "description"; + const NAME: &'static ::core::primitive::str = "description"; } impl cynic::schema::HasField<description> for super::super::Job { type Type = Option<super::super::String>; @@ -3876,7 +3877,7 @@ pub mod __fields { pub struct applyUrl; impl cynic::schema::Field for applyUrl { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl"; + const NAME: &'static ::core::primitive::str = "applyUrl"; } impl cynic::schema::HasField<applyUrl> for super::super::Job { type Type = Option<super::super::String>; @@ -3884,7 +3885,7 @@ pub mod __fields { pub struct company; impl cynic::schema::Field for company { type Type = Option<super::super::Company>; - const NAME: &'static str = "company"; + const NAME: &'static ::core::primitive::str = "company"; } impl cynic::schema::HasField<company> for super::super::Job { type Type = Option<super::super::Company>; @@ -3892,7 +3893,7 @@ pub mod __fields { pub struct tags; impl cynic::schema::Field for tags { type Type = Option<Vec<super::super::Tag>>; - const NAME: &'static str = "tags"; + const NAME: &'static ::core::primitive::str = "tags"; } impl cynic::schema::HasField<tags> for super::super::Job { type Type = Option<Vec<super::super::Tag>>; @@ -3901,43 +3902,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::tags { type ArgumentType = Option<super::super::super::TagWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::tags { type ArgumentType = Option<super::super::super::TagOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::tags { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::tags { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::tags { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::tags { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::tags { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct isPublished; impl cynic::schema::Field for isPublished { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "isPublished"; + const NAME: &'static ::core::primitive::str = "isPublished"; } impl cynic::schema::HasField<isPublished> for super::super::Job { type Type = Option<super::super::Boolean>; @@ -3945,7 +3946,7 @@ pub mod __fields { pub struct isFeatured; impl cynic::schema::Field for isFeatured { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "isFeatured"; + const NAME: &'static ::core::primitive::str = "isFeatured"; } impl cynic::schema::HasField<isFeatured> for super::super::Job { type Type = Option<super::super::Boolean>; @@ -3953,7 +3954,7 @@ pub mod __fields { pub struct locationNames; impl cynic::schema::Field for locationNames { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames"; + const NAME: &'static ::core::primitive::str = "locationNames"; } impl cynic::schema::HasField<locationNames> for super::super::Job { type Type = Option<super::super::String>; @@ -3961,7 +3962,7 @@ pub mod __fields { pub struct userEmail; impl cynic::schema::Field for userEmail { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail"; + const NAME: &'static ::core::primitive::str = "userEmail"; } impl cynic::schema::HasField<userEmail> for super::super::Job { type Type = Option<super::super::String>; @@ -3969,7 +3970,7 @@ pub mod __fields { pub struct postedAt; impl cynic::schema::Field for postedAt { type Type = super::super::DateTime; - const NAME: &'static str = "postedAt"; + const NAME: &'static ::core::primitive::str = "postedAt"; } impl cynic::schema::HasField<postedAt> for super::super::Job { type Type = super::super::DateTime; @@ -3977,7 +3978,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField<createdAt> for super::super::Job { type Type = super::super::DateTime; @@ -3985,7 +3986,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField<updatedAt> for super::super::Job { type Type = super::super::DateTime; @@ -3993,7 +3994,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Job { type Type = super::super::String; @@ -4003,13 +4004,13 @@ pub mod __fields { pub struct companySlug; impl cynic::schema::Field for companySlug { type Type = super::super::String; - const NAME: &'static str = "companySlug"; + const NAME: &'static ::core::primitive::str = "companySlug"; } impl cynic::schema::HasInputField<companySlug, super::super::String> for super::super::JobInput {} pub struct jobSlug; impl cynic::schema::Field for jobSlug { type Type = super::super::String; - const NAME: &'static str = "jobSlug"; + const NAME: &'static ::core::primitive::str = "jobSlug"; } impl cynic::schema::HasInputField<jobSlug, super::super::String> for super::super::JobInput {} } @@ -4017,13 +4018,13 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = Option<super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, Option<super::super::ID>> for super::super::JobWhereInput {} pub struct id_not; impl cynic::schema::Field for id_not { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not"; + const NAME: &'static ::core::primitive::str = "id_not"; } impl cynic::schema::HasInputField<id_not, Option<super::super::ID>> for super::super::JobWhereInput @@ -4032,7 +4033,7 @@ pub mod __fields { pub struct id_in; impl cynic::schema::Field for id_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_in"; + const NAME: &'static ::core::primitive::str = "id_in"; } impl cynic::schema::HasInputField<id_in, Option<Vec<super::super::ID>>> for super::super::JobWhereInput @@ -4041,7 +4042,7 @@ pub mod __fields { pub struct id_not_in; impl cynic::schema::Field for id_not_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_not_in"; + const NAME: &'static ::core::primitive::str = "id_not_in"; } impl cynic::schema::HasInputField<id_not_in, Option<Vec<super::super::ID>>> for super::super::JobWhereInput @@ -4050,13 +4051,13 @@ pub mod __fields { pub struct id_lt; impl cynic::schema::Field for id_lt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lt"; + const NAME: &'static ::core::primitive::str = "id_lt"; } impl cynic::schema::HasInputField<id_lt, Option<super::super::ID>> for super::super::JobWhereInput {} pub struct id_lte; impl cynic::schema::Field for id_lte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lte"; + const NAME: &'static ::core::primitive::str = "id_lte"; } impl cynic::schema::HasInputField<id_lte, Option<super::super::ID>> for super::super::JobWhereInput @@ -4065,13 +4066,13 @@ pub mod __fields { pub struct id_gt; impl cynic::schema::Field for id_gt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gt"; + const NAME: &'static ::core::primitive::str = "id_gt"; } impl cynic::schema::HasInputField<id_gt, Option<super::super::ID>> for super::super::JobWhereInput {} pub struct id_gte; impl cynic::schema::Field for id_gte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gte"; + const NAME: &'static ::core::primitive::str = "id_gte"; } impl cynic::schema::HasInputField<id_gte, Option<super::super::ID>> for super::super::JobWhereInput @@ -4080,7 +4081,7 @@ pub mod __fields { pub struct id_contains; impl cynic::schema::Field for id_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_contains"; + const NAME: &'static ::core::primitive::str = "id_contains"; } impl cynic::schema::HasInputField<id_contains, Option<super::super::ID>> for super::super::JobWhereInput @@ -4089,7 +4090,7 @@ pub mod __fields { pub struct id_not_contains; impl cynic::schema::Field for id_not_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_contains"; + const NAME: &'static ::core::primitive::str = "id_not_contains"; } impl cynic::schema::HasInputField<id_not_contains, Option<super::super::ID>> for super::super::JobWhereInput @@ -4098,7 +4099,7 @@ pub mod __fields { pub struct id_starts_with; impl cynic::schema::Field for id_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_starts_with"; + const NAME: &'static ::core::primitive::str = "id_starts_with"; } impl cynic::schema::HasInputField<id_starts_with, Option<super::super::ID>> for super::super::JobWhereInput @@ -4107,7 +4108,7 @@ pub mod __fields { pub struct id_not_starts_with; impl cynic::schema::Field for id_not_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_starts_with"; + const NAME: &'static ::core::primitive::str = "id_not_starts_with"; } impl cynic::schema::HasInputField<id_not_starts_with, Option<super::super::ID>> for super::super::JobWhereInput @@ -4116,7 +4117,7 @@ pub mod __fields { pub struct id_ends_with; impl cynic::schema::Field for id_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_ends_with"; + const NAME: &'static ::core::primitive::str = "id_ends_with"; } impl cynic::schema::HasInputField<id_ends_with, Option<super::super::ID>> for super::super::JobWhereInput @@ -4125,7 +4126,7 @@ pub mod __fields { pub struct id_not_ends_with; impl cynic::schema::Field for id_not_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_ends_with"; + const NAME: &'static ::core::primitive::str = "id_not_ends_with"; } impl cynic::schema::HasInputField<id_not_ends_with, Option<super::super::ID>> for super::super::JobWhereInput @@ -4134,7 +4135,7 @@ pub mod __fields { pub struct title; impl cynic::schema::Field for title { type Type = Option<super::super::String>; - const NAME: &'static str = "title"; + const NAME: &'static ::core::primitive::str = "title"; } impl cynic::schema::HasInputField<title, Option<super::super::String>> for super::super::JobWhereInput @@ -4143,7 +4144,7 @@ pub mod __fields { pub struct title_not; impl cynic::schema::Field for title_not { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not"; + const NAME: &'static ::core::primitive::str = "title_not"; } impl cynic::schema::HasInputField<title_not, Option<super::super::String>> for super::super::JobWhereInput @@ -4152,7 +4153,7 @@ pub mod __fields { pub struct title_in; impl cynic::schema::Field for title_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "title_in"; + const NAME: &'static ::core::primitive::str = "title_in"; } impl cynic::schema::HasInputField<title_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4161,7 +4162,7 @@ pub mod __fields { pub struct title_not_in; impl cynic::schema::Field for title_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "title_not_in"; + const NAME: &'static ::core::primitive::str = "title_not_in"; } impl cynic::schema::HasInputField<title_not_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4170,7 +4171,7 @@ pub mod __fields { pub struct title_lt; impl cynic::schema::Field for title_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "title_lt"; + const NAME: &'static ::core::primitive::str = "title_lt"; } impl cynic::schema::HasInputField<title_lt, Option<super::super::String>> for super::super::JobWhereInput @@ -4179,7 +4180,7 @@ pub mod __fields { pub struct title_lte; impl cynic::schema::Field for title_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "title_lte"; + const NAME: &'static ::core::primitive::str = "title_lte"; } impl cynic::schema::HasInputField<title_lte, Option<super::super::String>> for super::super::JobWhereInput @@ -4188,7 +4189,7 @@ pub mod __fields { pub struct title_gt; impl cynic::schema::Field for title_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "title_gt"; + const NAME: &'static ::core::primitive::str = "title_gt"; } impl cynic::schema::HasInputField<title_gt, Option<super::super::String>> for super::super::JobWhereInput @@ -4197,7 +4198,7 @@ pub mod __fields { pub struct title_gte; impl cynic::schema::Field for title_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "title_gte"; + const NAME: &'static ::core::primitive::str = "title_gte"; } impl cynic::schema::HasInputField<title_gte, Option<super::super::String>> for super::super::JobWhereInput @@ -4206,7 +4207,7 @@ pub mod __fields { pub struct title_contains; impl cynic::schema::Field for title_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "title_contains"; + const NAME: &'static ::core::primitive::str = "title_contains"; } impl cynic::schema::HasInputField<title_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4215,7 +4216,7 @@ pub mod __fields { pub struct title_not_contains; impl cynic::schema::Field for title_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not_contains"; + const NAME: &'static ::core::primitive::str = "title_not_contains"; } impl cynic::schema::HasInputField<title_not_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4224,7 +4225,7 @@ pub mod __fields { pub struct title_starts_with; impl cynic::schema::Field for title_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_starts_with"; + const NAME: &'static ::core::primitive::str = "title_starts_with"; } impl cynic::schema::HasInputField<title_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4233,7 +4234,7 @@ pub mod __fields { pub struct title_not_starts_with; impl cynic::schema::Field for title_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not_starts_with"; + const NAME: &'static ::core::primitive::str = "title_not_starts_with"; } impl cynic::schema::HasInputField<title_not_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4242,7 +4243,7 @@ pub mod __fields { pub struct title_ends_with; impl cynic::schema::Field for title_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_ends_with"; + const NAME: &'static ::core::primitive::str = "title_ends_with"; } impl cynic::schema::HasInputField<title_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4251,7 +4252,7 @@ pub mod __fields { pub struct title_not_ends_with; impl cynic::schema::Field for title_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "title_not_ends_with"; + const NAME: &'static ::core::primitive::str = "title_not_ends_with"; } impl cynic::schema::HasInputField<title_not_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4260,7 +4261,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option<super::super::String>; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, Option<super::super::String>> for super::super::JobWhereInput @@ -4269,7 +4270,7 @@ pub mod __fields { pub struct slug_not; impl cynic::schema::Field for slug_not { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not"; + const NAME: &'static ::core::primitive::str = "slug_not"; } impl cynic::schema::HasInputField<slug_not, Option<super::super::String>> for super::super::JobWhereInput @@ -4278,7 +4279,7 @@ pub mod __fields { pub struct slug_in; impl cynic::schema::Field for slug_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_in"; + const NAME: &'static ::core::primitive::str = "slug_in"; } impl cynic::schema::HasInputField<slug_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4287,7 +4288,7 @@ pub mod __fields { pub struct slug_not_in; impl cynic::schema::Field for slug_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_not_in"; + const NAME: &'static ::core::primitive::str = "slug_not_in"; } impl cynic::schema::HasInputField<slug_not_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4296,7 +4297,7 @@ pub mod __fields { pub struct slug_lt; impl cynic::schema::Field for slug_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lt"; + const NAME: &'static ::core::primitive::str = "slug_lt"; } impl cynic::schema::HasInputField<slug_lt, Option<super::super::String>> for super::super::JobWhereInput @@ -4305,7 +4306,7 @@ pub mod __fields { pub struct slug_lte; impl cynic::schema::Field for slug_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lte"; + const NAME: &'static ::core::primitive::str = "slug_lte"; } impl cynic::schema::HasInputField<slug_lte, Option<super::super::String>> for super::super::JobWhereInput @@ -4314,7 +4315,7 @@ pub mod __fields { pub struct slug_gt; impl cynic::schema::Field for slug_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gt"; + const NAME: &'static ::core::primitive::str = "slug_gt"; } impl cynic::schema::HasInputField<slug_gt, Option<super::super::String>> for super::super::JobWhereInput @@ -4323,7 +4324,7 @@ pub mod __fields { pub struct slug_gte; impl cynic::schema::Field for slug_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gte"; + const NAME: &'static ::core::primitive::str = "slug_gte"; } impl cynic::schema::HasInputField<slug_gte, Option<super::super::String>> for super::super::JobWhereInput @@ -4332,7 +4333,7 @@ pub mod __fields { pub struct slug_contains; impl cynic::schema::Field for slug_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_contains"; + const NAME: &'static ::core::primitive::str = "slug_contains"; } impl cynic::schema::HasInputField<slug_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4341,7 +4342,7 @@ pub mod __fields { pub struct slug_not_contains; impl cynic::schema::Field for slug_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_contains"; + const NAME: &'static ::core::primitive::str = "slug_not_contains"; } impl cynic::schema::HasInputField<slug_not_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4350,7 +4351,7 @@ pub mod __fields { pub struct slug_starts_with; impl cynic::schema::Field for slug_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_starts_with"; } impl cynic::schema::HasInputField<slug_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4359,7 +4360,7 @@ pub mod __fields { pub struct slug_not_starts_with; impl cynic::schema::Field for slug_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_not_starts_with"; } impl cynic::schema::HasInputField<slug_not_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4368,7 +4369,7 @@ pub mod __fields { pub struct slug_ends_with; impl cynic::schema::Field for slug_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_ends_with"; } impl cynic::schema::HasInputField<slug_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4377,7 +4378,7 @@ pub mod __fields { pub struct slug_not_ends_with; impl cynic::schema::Field for slug_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_not_ends_with"; } impl cynic::schema::HasInputField<slug_not_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4386,7 +4387,7 @@ pub mod __fields { pub struct commitment; impl cynic::schema::Field for commitment { type Type = Option<super::super::CommitmentWhereInput>; - const NAME: &'static str = "commitment"; + const NAME: &'static ::core::primitive::str = "commitment"; } impl cynic::schema::HasInputField<commitment, Option<super::super::CommitmentWhereInput>> for super::super::JobWhereInput @@ -4395,7 +4396,7 @@ pub mod __fields { pub struct cities_every; impl cynic::schema::Field for cities_every { type Type = Option<super::super::CityWhereInput>; - const NAME: &'static str = "cities_every"; + const NAME: &'static ::core::primitive::str = "cities_every"; } impl cynic::schema::HasInputField<cities_every, Option<super::super::CityWhereInput>> for super::super::JobWhereInput @@ -4404,7 +4405,7 @@ pub mod __fields { pub struct cities_some; impl cynic::schema::Field for cities_some { type Type = Option<super::super::CityWhereInput>; - const NAME: &'static str = "cities_some"; + const NAME: &'static ::core::primitive::str = "cities_some"; } impl cynic::schema::HasInputField<cities_some, Option<super::super::CityWhereInput>> for super::super::JobWhereInput @@ -4413,7 +4414,7 @@ pub mod __fields { pub struct cities_none; impl cynic::schema::Field for cities_none { type Type = Option<super::super::CityWhereInput>; - const NAME: &'static str = "cities_none"; + const NAME: &'static ::core::primitive::str = "cities_none"; } impl cynic::schema::HasInputField<cities_none, Option<super::super::CityWhereInput>> for super::super::JobWhereInput @@ -4422,7 +4423,7 @@ pub mod __fields { pub struct countries_every; impl cynic::schema::Field for countries_every { type Type = Option<super::super::CountryWhereInput>; - const NAME: &'static str = "countries_every"; + const NAME: &'static ::core::primitive::str = "countries_every"; } impl cynic::schema::HasInputField<countries_every, Option<super::super::CountryWhereInput>> for super::super::JobWhereInput @@ -4431,7 +4432,7 @@ pub mod __fields { pub struct countries_some; impl cynic::schema::Field for countries_some { type Type = Option<super::super::CountryWhereInput>; - const NAME: &'static str = "countries_some"; + const NAME: &'static ::core::primitive::str = "countries_some"; } impl cynic::schema::HasInputField<countries_some, Option<super::super::CountryWhereInput>> for super::super::JobWhereInput @@ -4440,7 +4441,7 @@ pub mod __fields { pub struct countries_none; impl cynic::schema::Field for countries_none { type Type = Option<super::super::CountryWhereInput>; - const NAME: &'static str = "countries_none"; + const NAME: &'static ::core::primitive::str = "countries_none"; } impl cynic::schema::HasInputField<countries_none, Option<super::super::CountryWhereInput>> for super::super::JobWhereInput @@ -4449,7 +4450,7 @@ pub mod __fields { pub struct remotes_every; impl cynic::schema::Field for remotes_every { type Type = Option<super::super::RemoteWhereInput>; - const NAME: &'static str = "remotes_every"; + const NAME: &'static ::core::primitive::str = "remotes_every"; } impl cynic::schema::HasInputField<remotes_every, Option<super::super::RemoteWhereInput>> for super::super::JobWhereInput @@ -4458,7 +4459,7 @@ pub mod __fields { pub struct remotes_some; impl cynic::schema::Field for remotes_some { type Type = Option<super::super::RemoteWhereInput>; - const NAME: &'static str = "remotes_some"; + const NAME: &'static ::core::primitive::str = "remotes_some"; } impl cynic::schema::HasInputField<remotes_some, Option<super::super::RemoteWhereInput>> for super::super::JobWhereInput @@ -4467,7 +4468,7 @@ pub mod __fields { pub struct remotes_none; impl cynic::schema::Field for remotes_none { type Type = Option<super::super::RemoteWhereInput>; - const NAME: &'static str = "remotes_none"; + const NAME: &'static ::core::primitive::str = "remotes_none"; } impl cynic::schema::HasInputField<remotes_none, Option<super::super::RemoteWhereInput>> for super::super::JobWhereInput @@ -4476,7 +4477,7 @@ pub mod __fields { pub struct description; impl cynic::schema::Field for description { type Type = Option<super::super::String>; - const NAME: &'static str = "description"; + const NAME: &'static ::core::primitive::str = "description"; } impl cynic::schema::HasInputField<description, Option<super::super::String>> for super::super::JobWhereInput @@ -4485,7 +4486,7 @@ pub mod __fields { pub struct description_not; impl cynic::schema::Field for description_not { type Type = Option<super::super::String>; - const NAME: &'static str = "description_not"; + const NAME: &'static ::core::primitive::str = "description_not"; } impl cynic::schema::HasInputField<description_not, Option<super::super::String>> for super::super::JobWhereInput @@ -4494,7 +4495,7 @@ pub mod __fields { pub struct description_in; impl cynic::schema::Field for description_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "description_in"; + const NAME: &'static ::core::primitive::str = "description_in"; } impl cynic::schema::HasInputField<description_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4503,7 +4504,7 @@ pub mod __fields { pub struct description_not_in; impl cynic::schema::Field for description_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "description_not_in"; + const NAME: &'static ::core::primitive::str = "description_not_in"; } impl cynic::schema::HasInputField<description_not_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4512,7 +4513,7 @@ pub mod __fields { pub struct description_lt; impl cynic::schema::Field for description_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "description_lt"; + const NAME: &'static ::core::primitive::str = "description_lt"; } impl cynic::schema::HasInputField<description_lt, Option<super::super::String>> for super::super::JobWhereInput @@ -4521,7 +4522,7 @@ pub mod __fields { pub struct description_lte; impl cynic::schema::Field for description_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "description_lte"; + const NAME: &'static ::core::primitive::str = "description_lte"; } impl cynic::schema::HasInputField<description_lte, Option<super::super::String>> for super::super::JobWhereInput @@ -4530,7 +4531,7 @@ pub mod __fields { pub struct description_gt; impl cynic::schema::Field for description_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "description_gt"; + const NAME: &'static ::core::primitive::str = "description_gt"; } impl cynic::schema::HasInputField<description_gt, Option<super::super::String>> for super::super::JobWhereInput @@ -4539,7 +4540,7 @@ pub mod __fields { pub struct description_gte; impl cynic::schema::Field for description_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "description_gte"; + const NAME: &'static ::core::primitive::str = "description_gte"; } impl cynic::schema::HasInputField<description_gte, Option<super::super::String>> for super::super::JobWhereInput @@ -4548,7 +4549,7 @@ pub mod __fields { pub struct description_contains; impl cynic::schema::Field for description_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "description_contains"; + const NAME: &'static ::core::primitive::str = "description_contains"; } impl cynic::schema::HasInputField<description_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4557,7 +4558,7 @@ pub mod __fields { pub struct description_not_contains; impl cynic::schema::Field for description_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "description_not_contains"; + const NAME: &'static ::core::primitive::str = "description_not_contains"; } impl cynic::schema::HasInputField<description_not_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4566,7 +4567,7 @@ pub mod __fields { pub struct description_starts_with; impl cynic::schema::Field for description_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "description_starts_with"; + const NAME: &'static ::core::primitive::str = "description_starts_with"; } impl cynic::schema::HasInputField<description_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4575,7 +4576,7 @@ pub mod __fields { pub struct description_not_starts_with; impl cynic::schema::Field for description_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "description_not_starts_with"; + const NAME: &'static ::core::primitive::str = "description_not_starts_with"; } impl cynic::schema::HasInputField<description_not_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4584,7 +4585,7 @@ pub mod __fields { pub struct description_ends_with; impl cynic::schema::Field for description_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "description_ends_with"; + const NAME: &'static ::core::primitive::str = "description_ends_with"; } impl cynic::schema::HasInputField<description_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4593,7 +4594,7 @@ pub mod __fields { pub struct description_not_ends_with; impl cynic::schema::Field for description_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "description_not_ends_with"; + const NAME: &'static ::core::primitive::str = "description_not_ends_with"; } impl cynic::schema::HasInputField<description_not_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4602,7 +4603,7 @@ pub mod __fields { pub struct applyUrl; impl cynic::schema::Field for applyUrl { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl"; + const NAME: &'static ::core::primitive::str = "applyUrl"; } impl cynic::schema::HasInputField<applyUrl, Option<super::super::String>> for super::super::JobWhereInput @@ -4611,7 +4612,7 @@ pub mod __fields { pub struct applyUrl_not; impl cynic::schema::Field for applyUrl_not { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_not"; + const NAME: &'static ::core::primitive::str = "applyUrl_not"; } impl cynic::schema::HasInputField<applyUrl_not, Option<super::super::String>> for super::super::JobWhereInput @@ -4620,7 +4621,7 @@ pub mod __fields { pub struct applyUrl_in; impl cynic::schema::Field for applyUrl_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "applyUrl_in"; + const NAME: &'static ::core::primitive::str = "applyUrl_in"; } impl cynic::schema::HasInputField<applyUrl_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4629,7 +4630,7 @@ pub mod __fields { pub struct applyUrl_not_in; impl cynic::schema::Field for applyUrl_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "applyUrl_not_in"; + const NAME: &'static ::core::primitive::str = "applyUrl_not_in"; } impl cynic::schema::HasInputField<applyUrl_not_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4638,7 +4639,7 @@ pub mod __fields { pub struct applyUrl_lt; impl cynic::schema::Field for applyUrl_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_lt"; + const NAME: &'static ::core::primitive::str = "applyUrl_lt"; } impl cynic::schema::HasInputField<applyUrl_lt, Option<super::super::String>> for super::super::JobWhereInput @@ -4647,7 +4648,7 @@ pub mod __fields { pub struct applyUrl_lte; impl cynic::schema::Field for applyUrl_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_lte"; + const NAME: &'static ::core::primitive::str = "applyUrl_lte"; } impl cynic::schema::HasInputField<applyUrl_lte, Option<super::super::String>> for super::super::JobWhereInput @@ -4656,7 +4657,7 @@ pub mod __fields { pub struct applyUrl_gt; impl cynic::schema::Field for applyUrl_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_gt"; + const NAME: &'static ::core::primitive::str = "applyUrl_gt"; } impl cynic::schema::HasInputField<applyUrl_gt, Option<super::super::String>> for super::super::JobWhereInput @@ -4665,7 +4666,7 @@ pub mod __fields { pub struct applyUrl_gte; impl cynic::schema::Field for applyUrl_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_gte"; + const NAME: &'static ::core::primitive::str = "applyUrl_gte"; } impl cynic::schema::HasInputField<applyUrl_gte, Option<super::super::String>> for super::super::JobWhereInput @@ -4674,7 +4675,7 @@ pub mod __fields { pub struct applyUrl_contains; impl cynic::schema::Field for applyUrl_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_contains"; + const NAME: &'static ::core::primitive::str = "applyUrl_contains"; } impl cynic::schema::HasInputField<applyUrl_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4683,7 +4684,7 @@ pub mod __fields { pub struct applyUrl_not_contains; impl cynic::schema::Field for applyUrl_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_not_contains"; + const NAME: &'static ::core::primitive::str = "applyUrl_not_contains"; } impl cynic::schema::HasInputField<applyUrl_not_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4692,7 +4693,7 @@ pub mod __fields { pub struct applyUrl_starts_with; impl cynic::schema::Field for applyUrl_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_starts_with"; + const NAME: &'static ::core::primitive::str = "applyUrl_starts_with"; } impl cynic::schema::HasInputField<applyUrl_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4701,7 +4702,7 @@ pub mod __fields { pub struct applyUrl_not_starts_with; impl cynic::schema::Field for applyUrl_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_not_starts_with"; + const NAME: &'static ::core::primitive::str = "applyUrl_not_starts_with"; } impl cynic::schema::HasInputField<applyUrl_not_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4710,7 +4711,7 @@ pub mod __fields { pub struct applyUrl_ends_with; impl cynic::schema::Field for applyUrl_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_ends_with"; + const NAME: &'static ::core::primitive::str = "applyUrl_ends_with"; } impl cynic::schema::HasInputField<applyUrl_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4719,7 +4720,7 @@ pub mod __fields { pub struct applyUrl_not_ends_with; impl cynic::schema::Field for applyUrl_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "applyUrl_not_ends_with"; + const NAME: &'static ::core::primitive::str = "applyUrl_not_ends_with"; } impl cynic::schema::HasInputField<applyUrl_not_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4728,7 +4729,7 @@ pub mod __fields { pub struct company; impl cynic::schema::Field for company { type Type = Option<super::super::CompanyWhereInput>; - const NAME: &'static str = "company"; + const NAME: &'static ::core::primitive::str = "company"; } impl cynic::schema::HasInputField<company, Option<super::super::CompanyWhereInput>> for super::super::JobWhereInput @@ -4737,7 +4738,7 @@ pub mod __fields { pub struct tags_every; impl cynic::schema::Field for tags_every { type Type = Option<super::super::TagWhereInput>; - const NAME: &'static str = "tags_every"; + const NAME: &'static ::core::primitive::str = "tags_every"; } impl cynic::schema::HasInputField<tags_every, Option<super::super::TagWhereInput>> for super::super::JobWhereInput @@ -4746,7 +4747,7 @@ pub mod __fields { pub struct tags_some; impl cynic::schema::Field for tags_some { type Type = Option<super::super::TagWhereInput>; - const NAME: &'static str = "tags_some"; + const NAME: &'static ::core::primitive::str = "tags_some"; } impl cynic::schema::HasInputField<tags_some, Option<super::super::TagWhereInput>> for super::super::JobWhereInput @@ -4755,7 +4756,7 @@ pub mod __fields { pub struct tags_none; impl cynic::schema::Field for tags_none { type Type = Option<super::super::TagWhereInput>; - const NAME: &'static str = "tags_none"; + const NAME: &'static ::core::primitive::str = "tags_none"; } impl cynic::schema::HasInputField<tags_none, Option<super::super::TagWhereInput>> for super::super::JobWhereInput @@ -4764,7 +4765,7 @@ pub mod __fields { pub struct isPublished; impl cynic::schema::Field for isPublished { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "isPublished"; + const NAME: &'static ::core::primitive::str = "isPublished"; } impl cynic::schema::HasInputField<isPublished, Option<super::super::Boolean>> for super::super::JobWhereInput @@ -4773,7 +4774,7 @@ pub mod __fields { pub struct isPublished_not; impl cynic::schema::Field for isPublished_not { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "isPublished_not"; + const NAME: &'static ::core::primitive::str = "isPublished_not"; } impl cynic::schema::HasInputField<isPublished_not, Option<super::super::Boolean>> for super::super::JobWhereInput @@ -4782,7 +4783,7 @@ pub mod __fields { pub struct isFeatured; impl cynic::schema::Field for isFeatured { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "isFeatured"; + const NAME: &'static ::core::primitive::str = "isFeatured"; } impl cynic::schema::HasInputField<isFeatured, Option<super::super::Boolean>> for super::super::JobWhereInput @@ -4791,7 +4792,7 @@ pub mod __fields { pub struct isFeatured_not; impl cynic::schema::Field for isFeatured_not { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "isFeatured_not"; + const NAME: &'static ::core::primitive::str = "isFeatured_not"; } impl cynic::schema::HasInputField<isFeatured_not, Option<super::super::Boolean>> for super::super::JobWhereInput @@ -4800,7 +4801,7 @@ pub mod __fields { pub struct locationNames; impl cynic::schema::Field for locationNames { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames"; + const NAME: &'static ::core::primitive::str = "locationNames"; } impl cynic::schema::HasInputField<locationNames, Option<super::super::String>> for super::super::JobWhereInput @@ -4809,7 +4810,7 @@ pub mod __fields { pub struct locationNames_not; impl cynic::schema::Field for locationNames_not { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_not"; + const NAME: &'static ::core::primitive::str = "locationNames_not"; } impl cynic::schema::HasInputField<locationNames_not, Option<super::super::String>> for super::super::JobWhereInput @@ -4818,7 +4819,7 @@ pub mod __fields { pub struct locationNames_in; impl cynic::schema::Field for locationNames_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "locationNames_in"; + const NAME: &'static ::core::primitive::str = "locationNames_in"; } impl cynic::schema::HasInputField<locationNames_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4827,7 +4828,7 @@ pub mod __fields { pub struct locationNames_not_in; impl cynic::schema::Field for locationNames_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "locationNames_not_in"; + const NAME: &'static ::core::primitive::str = "locationNames_not_in"; } impl cynic::schema::HasInputField<locationNames_not_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4836,7 +4837,7 @@ pub mod __fields { pub struct locationNames_lt; impl cynic::schema::Field for locationNames_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_lt"; + const NAME: &'static ::core::primitive::str = "locationNames_lt"; } impl cynic::schema::HasInputField<locationNames_lt, Option<super::super::String>> for super::super::JobWhereInput @@ -4845,7 +4846,7 @@ pub mod __fields { pub struct locationNames_lte; impl cynic::schema::Field for locationNames_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_lte"; + const NAME: &'static ::core::primitive::str = "locationNames_lte"; } impl cynic::schema::HasInputField<locationNames_lte, Option<super::super::String>> for super::super::JobWhereInput @@ -4854,7 +4855,7 @@ pub mod __fields { pub struct locationNames_gt; impl cynic::schema::Field for locationNames_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_gt"; + const NAME: &'static ::core::primitive::str = "locationNames_gt"; } impl cynic::schema::HasInputField<locationNames_gt, Option<super::super::String>> for super::super::JobWhereInput @@ -4863,7 +4864,7 @@ pub mod __fields { pub struct locationNames_gte; impl cynic::schema::Field for locationNames_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_gte"; + const NAME: &'static ::core::primitive::str = "locationNames_gte"; } impl cynic::schema::HasInputField<locationNames_gte, Option<super::super::String>> for super::super::JobWhereInput @@ -4872,7 +4873,7 @@ pub mod __fields { pub struct locationNames_contains; impl cynic::schema::Field for locationNames_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_contains"; + const NAME: &'static ::core::primitive::str = "locationNames_contains"; } impl cynic::schema::HasInputField<locationNames_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4881,7 +4882,7 @@ pub mod __fields { pub struct locationNames_not_contains; impl cynic::schema::Field for locationNames_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_not_contains"; + const NAME: &'static ::core::primitive::str = "locationNames_not_contains"; } impl cynic::schema::HasInputField<locationNames_not_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -4890,7 +4891,7 @@ pub mod __fields { pub struct locationNames_starts_with; impl cynic::schema::Field for locationNames_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_starts_with"; + const NAME: &'static ::core::primitive::str = "locationNames_starts_with"; } impl cynic::schema::HasInputField<locationNames_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4899,7 +4900,7 @@ pub mod __fields { pub struct locationNames_not_starts_with; impl cynic::schema::Field for locationNames_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_not_starts_with"; + const NAME: &'static ::core::primitive::str = "locationNames_not_starts_with"; } impl cynic::schema::HasInputField< @@ -4911,7 +4912,7 @@ pub mod __fields { pub struct locationNames_ends_with; impl cynic::schema::Field for locationNames_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_ends_with"; + const NAME: &'static ::core::primitive::str = "locationNames_ends_with"; } impl cynic::schema::HasInputField<locationNames_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4920,7 +4921,7 @@ pub mod __fields { pub struct locationNames_not_ends_with; impl cynic::schema::Field for locationNames_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "locationNames_not_ends_with"; + const NAME: &'static ::core::primitive::str = "locationNames_not_ends_with"; } impl cynic::schema::HasInputField<locationNames_not_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -4929,7 +4930,7 @@ pub mod __fields { pub struct userEmail; impl cynic::schema::Field for userEmail { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail"; + const NAME: &'static ::core::primitive::str = "userEmail"; } impl cynic::schema::HasInputField<userEmail, Option<super::super::String>> for super::super::JobWhereInput @@ -4938,7 +4939,7 @@ pub mod __fields { pub struct userEmail_not; impl cynic::schema::Field for userEmail_not { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_not"; + const NAME: &'static ::core::primitive::str = "userEmail_not"; } impl cynic::schema::HasInputField<userEmail_not, Option<super::super::String>> for super::super::JobWhereInput @@ -4947,7 +4948,7 @@ pub mod __fields { pub struct userEmail_in; impl cynic::schema::Field for userEmail_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "userEmail_in"; + const NAME: &'static ::core::primitive::str = "userEmail_in"; } impl cynic::schema::HasInputField<userEmail_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4956,7 +4957,7 @@ pub mod __fields { pub struct userEmail_not_in; impl cynic::schema::Field for userEmail_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "userEmail_not_in"; + const NAME: &'static ::core::primitive::str = "userEmail_not_in"; } impl cynic::schema::HasInputField<userEmail_not_in, Option<Vec<super::super::String>>> for super::super::JobWhereInput @@ -4965,7 +4966,7 @@ pub mod __fields { pub struct userEmail_lt; impl cynic::schema::Field for userEmail_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_lt"; + const NAME: &'static ::core::primitive::str = "userEmail_lt"; } impl cynic::schema::HasInputField<userEmail_lt, Option<super::super::String>> for super::super::JobWhereInput @@ -4974,7 +4975,7 @@ pub mod __fields { pub struct userEmail_lte; impl cynic::schema::Field for userEmail_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_lte"; + const NAME: &'static ::core::primitive::str = "userEmail_lte"; } impl cynic::schema::HasInputField<userEmail_lte, Option<super::super::String>> for super::super::JobWhereInput @@ -4983,7 +4984,7 @@ pub mod __fields { pub struct userEmail_gt; impl cynic::schema::Field for userEmail_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_gt"; + const NAME: &'static ::core::primitive::str = "userEmail_gt"; } impl cynic::schema::HasInputField<userEmail_gt, Option<super::super::String>> for super::super::JobWhereInput @@ -4992,7 +4993,7 @@ pub mod __fields { pub struct userEmail_gte; impl cynic::schema::Field for userEmail_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_gte"; + const NAME: &'static ::core::primitive::str = "userEmail_gte"; } impl cynic::schema::HasInputField<userEmail_gte, Option<super::super::String>> for super::super::JobWhereInput @@ -5001,7 +5002,7 @@ pub mod __fields { pub struct userEmail_contains; impl cynic::schema::Field for userEmail_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_contains"; + const NAME: &'static ::core::primitive::str = "userEmail_contains"; } impl cynic::schema::HasInputField<userEmail_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -5010,7 +5011,7 @@ pub mod __fields { pub struct userEmail_not_contains; impl cynic::schema::Field for userEmail_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_not_contains"; + const NAME: &'static ::core::primitive::str = "userEmail_not_contains"; } impl cynic::schema::HasInputField<userEmail_not_contains, Option<super::super::String>> for super::super::JobWhereInput @@ -5019,7 +5020,7 @@ pub mod __fields { pub struct userEmail_starts_with; impl cynic::schema::Field for userEmail_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_starts_with"; + const NAME: &'static ::core::primitive::str = "userEmail_starts_with"; } impl cynic::schema::HasInputField<userEmail_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -5028,7 +5029,7 @@ pub mod __fields { pub struct userEmail_not_starts_with; impl cynic::schema::Field for userEmail_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_not_starts_with"; + const NAME: &'static ::core::primitive::str = "userEmail_not_starts_with"; } impl cynic::schema::HasInputField<userEmail_not_starts_with, Option<super::super::String>> for super::super::JobWhereInput @@ -5037,7 +5038,7 @@ pub mod __fields { pub struct userEmail_ends_with; impl cynic::schema::Field for userEmail_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_ends_with"; + const NAME: &'static ::core::primitive::str = "userEmail_ends_with"; } impl cynic::schema::HasInputField<userEmail_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -5046,7 +5047,7 @@ pub mod __fields { pub struct userEmail_not_ends_with; impl cynic::schema::Field for userEmail_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "userEmail_not_ends_with"; + const NAME: &'static ::core::primitive::str = "userEmail_not_ends_with"; } impl cynic::schema::HasInputField<userEmail_not_ends_with, Option<super::super::String>> for super::super::JobWhereInput @@ -5055,7 +5056,7 @@ pub mod __fields { pub struct postedAt; impl cynic::schema::Field for postedAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "postedAt"; + const NAME: &'static ::core::primitive::str = "postedAt"; } impl cynic::schema::HasInputField<postedAt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5064,7 +5065,7 @@ pub mod __fields { pub struct postedAt_not; impl cynic::schema::Field for postedAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "postedAt_not"; + const NAME: &'static ::core::primitive::str = "postedAt_not"; } impl cynic::schema::HasInputField<postedAt_not, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5073,7 +5074,7 @@ pub mod __fields { pub struct postedAt_in; impl cynic::schema::Field for postedAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "postedAt_in"; + const NAME: &'static ::core::primitive::str = "postedAt_in"; } impl cynic::schema::HasInputField<postedAt_in, Option<Vec<super::super::DateTime>>> for super::super::JobWhereInput @@ -5082,7 +5083,7 @@ pub mod __fields { pub struct postedAt_not_in; impl cynic::schema::Field for postedAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "postedAt_not_in"; + const NAME: &'static ::core::primitive::str = "postedAt_not_in"; } impl cynic::schema::HasInputField<postedAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::JobWhereInput @@ -5091,7 +5092,7 @@ pub mod __fields { pub struct postedAt_lt; impl cynic::schema::Field for postedAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "postedAt_lt"; + const NAME: &'static ::core::primitive::str = "postedAt_lt"; } impl cynic::schema::HasInputField<postedAt_lt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5100,7 +5101,7 @@ pub mod __fields { pub struct postedAt_lte; impl cynic::schema::Field for postedAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "postedAt_lte"; + const NAME: &'static ::core::primitive::str = "postedAt_lte"; } impl cynic::schema::HasInputField<postedAt_lte, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5109,7 +5110,7 @@ pub mod __fields { pub struct postedAt_gt; impl cynic::schema::Field for postedAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "postedAt_gt"; + const NAME: &'static ::core::primitive::str = "postedAt_gt"; } impl cynic::schema::HasInputField<postedAt_gt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5118,7 +5119,7 @@ pub mod __fields { pub struct postedAt_gte; impl cynic::schema::Field for postedAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "postedAt_gte"; + const NAME: &'static ::core::primitive::str = "postedAt_gte"; } impl cynic::schema::HasInputField<postedAt_gte, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5127,7 +5128,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasInputField<createdAt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5136,7 +5137,7 @@ pub mod __fields { pub struct createdAt_not; impl cynic::schema::Field for createdAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_not"; + const NAME: &'static ::core::primitive::str = "createdAt_not"; } impl cynic::schema::HasInputField<createdAt_not, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5145,7 +5146,7 @@ pub mod __fields { pub struct createdAt_in; impl cynic::schema::Field for createdAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_in"; + const NAME: &'static ::core::primitive::str = "createdAt_in"; } impl cynic::schema::HasInputField<createdAt_in, Option<Vec<super::super::DateTime>>> for super::super::JobWhereInput @@ -5154,7 +5155,7 @@ pub mod __fields { pub struct createdAt_not_in; impl cynic::schema::Field for createdAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_not_in"; + const NAME: &'static ::core::primitive::str = "createdAt_not_in"; } impl cynic::schema::HasInputField<createdAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::JobWhereInput @@ -5163,7 +5164,7 @@ pub mod __fields { pub struct createdAt_lt; impl cynic::schema::Field for createdAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lt"; + const NAME: &'static ::core::primitive::str = "createdAt_lt"; } impl cynic::schema::HasInputField<createdAt_lt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5172,7 +5173,7 @@ pub mod __fields { pub struct createdAt_lte; impl cynic::schema::Field for createdAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lte"; + const NAME: &'static ::core::primitive::str = "createdAt_lte"; } impl cynic::schema::HasInputField<createdAt_lte, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5181,7 +5182,7 @@ pub mod __fields { pub struct createdAt_gt; impl cynic::schema::Field for createdAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gt"; + const NAME: &'static ::core::primitive::str = "createdAt_gt"; } impl cynic::schema::HasInputField<createdAt_gt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5190,7 +5191,7 @@ pub mod __fields { pub struct createdAt_gte; impl cynic::schema::Field for createdAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gte"; + const NAME: &'static ::core::primitive::str = "createdAt_gte"; } impl cynic::schema::HasInputField<createdAt_gte, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5199,7 +5200,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasInputField<updatedAt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5208,7 +5209,7 @@ pub mod __fields { pub struct updatedAt_not; impl cynic::schema::Field for updatedAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_not"; + const NAME: &'static ::core::primitive::str = "updatedAt_not"; } impl cynic::schema::HasInputField<updatedAt_not, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5217,7 +5218,7 @@ pub mod __fields { pub struct updatedAt_in; impl cynic::schema::Field for updatedAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_in"; } impl cynic::schema::HasInputField<updatedAt_in, Option<Vec<super::super::DateTime>>> for super::super::JobWhereInput @@ -5226,7 +5227,7 @@ pub mod __fields { pub struct updatedAt_not_in; impl cynic::schema::Field for updatedAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_not_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_not_in"; } impl cynic::schema::HasInputField<updatedAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::JobWhereInput @@ -5235,7 +5236,7 @@ pub mod __fields { pub struct updatedAt_lt; impl cynic::schema::Field for updatedAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lt"; + const NAME: &'static ::core::primitive::str = "updatedAt_lt"; } impl cynic::schema::HasInputField<updatedAt_lt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5244,7 +5245,7 @@ pub mod __fields { pub struct updatedAt_lte; impl cynic::schema::Field for updatedAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lte"; + const NAME: &'static ::core::primitive::str = "updatedAt_lte"; } impl cynic::schema::HasInputField<updatedAt_lte, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5253,7 +5254,7 @@ pub mod __fields { pub struct updatedAt_gt; impl cynic::schema::Field for updatedAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gt"; + const NAME: &'static ::core::primitive::str = "updatedAt_gt"; } impl cynic::schema::HasInputField<updatedAt_gt, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5262,7 +5263,7 @@ pub mod __fields { pub struct updatedAt_gte; impl cynic::schema::Field for updatedAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gte"; + const NAME: &'static ::core::primitive::str = "updatedAt_gte"; } impl cynic::schema::HasInputField<updatedAt_gte, Option<super::super::DateTime>> for super::super::JobWhereInput @@ -5271,7 +5272,7 @@ pub mod __fields { pub struct AND; impl cynic::schema::Field for AND { type Type = Option<Vec<super::super::JobWhereInput>>; - const NAME: &'static str = "AND"; + const NAME: &'static ::core::primitive::str = "AND"; } impl cynic::schema::HasInputField<AND, Option<Vec<super::super::JobWhereInput>>> for super::super::JobWhereInput @@ -5280,7 +5281,7 @@ pub mod __fields { pub struct OR; impl cynic::schema::Field for OR { type Type = Option<Vec<super::super::JobWhereInput>>; - const NAME: &'static str = "OR"; + const NAME: &'static ::core::primitive::str = "OR"; } impl cynic::schema::HasInputField<OR, Option<Vec<super::super::JobWhereInput>>> for super::super::JobWhereInput @@ -5289,7 +5290,7 @@ pub mod __fields { pub struct NOT; impl cynic::schema::Field for NOT { type Type = Option<Vec<super::super::JobWhereInput>>; - const NAME: &'static str = "NOT"; + const NAME: &'static ::core::primitive::str = "NOT"; } impl cynic::schema::HasInputField<NOT, Option<Vec<super::super::JobWhereInput>>> for super::super::JobWhereInput @@ -5300,7 +5301,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = Option<super::super::String>; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasInputField<r#type, Option<super::super::String>> for super::super::JobsInput @@ -5309,7 +5310,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option<super::super::String>; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, Option<super::super::String>> for super::super::JobsInput {} } @@ -5317,7 +5318,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Location { type Type = super::super::ID; @@ -5325,7 +5326,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField<slug> for super::super::Location { type Type = super::super::String; @@ -5333,7 +5334,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Location { type Type = super::super::String; @@ -5341,7 +5342,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = super::super::String; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasField<r#type> for super::super::Location { type Type = super::super::String; @@ -5349,7 +5350,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Location { type Type = super::super::String; @@ -5359,7 +5360,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, super::super::String> for super::super::LocationInput {} } @@ -5367,7 +5368,7 @@ pub mod __fields { pub struct value; impl cynic::schema::Field for value { type Type = super::super::String; - const NAME: &'static str = "value"; + const NAME: &'static ::core::primitive::str = "value"; } impl cynic::schema::HasInputField<value, super::super::String> for super::super::LocationsInput {} } @@ -5375,7 +5376,7 @@ pub mod __fields { pub struct subscribe; impl cynic::schema::Field for subscribe { type Type = super::super::User; - const NAME: &'static str = "subscribe"; + const NAME: &'static ::core::primitive::str = "subscribe"; } impl cynic::schema::HasField<subscribe> for super::super::Mutation { type Type = super::super::User; @@ -5384,13 +5385,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::subscribe { type ArgumentType = super::super::super::SubscribeInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct postJob; impl cynic::schema::Field for postJob { type Type = super::super::Job; - const NAME: &'static str = "postJob"; + const NAME: &'static ::core::primitive::str = "postJob"; } impl cynic::schema::HasField<postJob> for super::super::Mutation { type Type = super::super::Job; @@ -5399,13 +5400,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::postJob { type ArgumentType = super::super::super::PostJobInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct updateJob; impl cynic::schema::Field for updateJob { type Type = super::super::Job; - const NAME: &'static str = "updateJob"; + const NAME: &'static ::core::primitive::str = "updateJob"; } impl cynic::schema::HasField<updateJob> for super::super::Mutation { type Type = super::super::Job; @@ -5414,18 +5415,18 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::updateJob { type ArgumentType = super::super::super::UpdateJobInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } pub struct adminSecret; impl cynic::schema::HasArgument<adminSecret> for super::updateJob { type ArgumentType = super::super::super::String; - const NAME: &'static str = "adminSecret"; + const NAME: &'static ::core::primitive::str = "adminSecret"; } } pub struct updateCompany; impl cynic::schema::Field for updateCompany { type Type = super::super::Company; - const NAME: &'static str = "updateCompany"; + const NAME: &'static ::core::primitive::str = "updateCompany"; } impl cynic::schema::HasField<updateCompany> for super::super::Mutation { type Type = super::super::Company; @@ -5434,18 +5435,18 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::updateCompany { type ArgumentType = super::super::super::UpdateCompanyInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } pub struct adminSecret; impl cynic::schema::HasArgument<adminSecret> for super::updateCompany { type ArgumentType = super::super::super::String; - const NAME: &'static str = "adminSecret"; + const NAME: &'static ::core::primitive::str = "adminSecret"; } } pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Mutation { type Type = super::super::String; @@ -5455,19 +5456,19 @@ pub mod __fields { pub struct title; impl cynic::schema::Field for title { type Type = super::super::String; - const NAME: &'static str = "title"; + const NAME: &'static ::core::primitive::str = "title"; } impl cynic::schema::HasInputField<title, super::super::String> for super::super::PostJobInput {} pub struct commitmentId; impl cynic::schema::Field for commitmentId { type Type = super::super::ID; - const NAME: &'static str = "commitmentId"; + const NAME: &'static ::core::primitive::str = "commitmentId"; } impl cynic::schema::HasInputField<commitmentId, super::super::ID> for super::super::PostJobInput {} pub struct companyName; impl cynic::schema::Field for companyName { type Type = super::super::String; - const NAME: &'static str = "companyName"; + const NAME: &'static ::core::primitive::str = "companyName"; } impl cynic::schema::HasInputField<companyName, super::super::String> for super::super::PostJobInput @@ -5476,7 +5477,7 @@ pub mod __fields { pub struct locationNames; impl cynic::schema::Field for locationNames { type Type = super::super::String; - const NAME: &'static str = "locationNames"; + const NAME: &'static ::core::primitive::str = "locationNames"; } impl cynic::schema::HasInputField<locationNames, super::super::String> for super::super::PostJobInput @@ -5485,13 +5486,13 @@ pub mod __fields { pub struct userEmail; impl cynic::schema::Field for userEmail { type Type = super::super::String; - const NAME: &'static str = "userEmail"; + const NAME: &'static ::core::primitive::str = "userEmail"; } impl cynic::schema::HasInputField<userEmail, super::super::String> for super::super::PostJobInput {} pub struct description; impl cynic::schema::Field for description { type Type = super::super::String; - const NAME: &'static str = "description"; + const NAME: &'static ::core::primitive::str = "description"; } impl cynic::schema::HasInputField<description, super::super::String> for super::super::PostJobInput @@ -5500,7 +5501,7 @@ pub mod __fields { pub struct applyUrl; impl cynic::schema::Field for applyUrl { type Type = super::super::String; - const NAME: &'static str = "applyUrl"; + const NAME: &'static ::core::primitive::str = "applyUrl"; } impl cynic::schema::HasInputField<applyUrl, super::super::String> for super::super::PostJobInput {} } @@ -5508,7 +5509,7 @@ pub mod __fields { pub struct jobs; impl cynic::schema::Field for jobs { type Type = Vec<super::super::Job>; - const NAME: &'static str = "jobs"; + const NAME: &'static ::core::primitive::str = "jobs"; } impl cynic::schema::HasField<jobs> for super::super::Query { type Type = Vec<super::super::Job>; @@ -5517,13 +5518,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::jobs { type ArgumentType = Option<super::super::super::JobsInput>; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct job; impl cynic::schema::Field for job { type Type = super::super::Job; - const NAME: &'static str = "job"; + const NAME: &'static ::core::primitive::str = "job"; } impl cynic::schema::HasField<job> for super::super::Query { type Type = super::super::Job; @@ -5532,13 +5533,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::job { type ArgumentType = super::super::super::JobInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct locations; impl cynic::schema::Field for locations { type Type = Vec<super::super::Location>; - const NAME: &'static str = "locations"; + const NAME: &'static ::core::primitive::str = "locations"; } impl cynic::schema::HasField<locations> for super::super::Query { type Type = Vec<super::super::Location>; @@ -5547,13 +5548,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::locations { type ArgumentType = super::super::super::LocationsInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct city; impl cynic::schema::Field for city { type Type = super::super::City; - const NAME: &'static str = "city"; + const NAME: &'static ::core::primitive::str = "city"; } impl cynic::schema::HasField<city> for super::super::Query { type Type = super::super::City; @@ -5562,13 +5563,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::city { type ArgumentType = super::super::super::LocationInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct country; impl cynic::schema::Field for country { type Type = super::super::Country; - const NAME: &'static str = "country"; + const NAME: &'static ::core::primitive::str = "country"; } impl cynic::schema::HasField<country> for super::super::Query { type Type = super::super::Country; @@ -5577,13 +5578,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::country { type ArgumentType = super::super::super::LocationInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct remote; impl cynic::schema::Field for remote { type Type = super::super::Remote; - const NAME: &'static str = "remote"; + const NAME: &'static ::core::primitive::str = "remote"; } impl cynic::schema::HasField<remote> for super::super::Query { type Type = super::super::Remote; @@ -5592,13 +5593,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::remote { type ArgumentType = super::super::super::LocationInput; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct commitments; impl cynic::schema::Field for commitments { type Type = Vec<super::super::Commitment>; - const NAME: &'static str = "commitments"; + const NAME: &'static ::core::primitive::str = "commitments"; } impl cynic::schema::HasField<commitments> for super::super::Query { type Type = Vec<super::super::Commitment>; @@ -5606,7 +5607,7 @@ pub mod __fields { pub struct cities; impl cynic::schema::Field for cities { type Type = Vec<super::super::City>; - const NAME: &'static str = "cities"; + const NAME: &'static ::core::primitive::str = "cities"; } impl cynic::schema::HasField<cities> for super::super::Query { type Type = Vec<super::super::City>; @@ -5614,7 +5615,7 @@ pub mod __fields { pub struct countries; impl cynic::schema::Field for countries { type Type = Vec<super::super::Country>; - const NAME: &'static str = "countries"; + const NAME: &'static ::core::primitive::str = "countries"; } impl cynic::schema::HasField<countries> for super::super::Query { type Type = Vec<super::super::Country>; @@ -5622,7 +5623,7 @@ pub mod __fields { pub struct remotes; impl cynic::schema::Field for remotes { type Type = Vec<super::super::Remote>; - const NAME: &'static str = "remotes"; + const NAME: &'static ::core::primitive::str = "remotes"; } impl cynic::schema::HasField<remotes> for super::super::Query { type Type = Vec<super::super::Remote>; @@ -5630,7 +5631,7 @@ pub mod __fields { pub struct companies; impl cynic::schema::Field for companies { type Type = Vec<super::super::Company>; - const NAME: &'static str = "companies"; + const NAME: &'static ::core::primitive::str = "companies"; } impl cynic::schema::HasField<companies> for super::super::Query { type Type = Vec<super::super::Company>; @@ -5638,7 +5639,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Query { type Type = super::super::String; @@ -5648,7 +5649,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Remote { type Type = super::super::ID; @@ -5656,7 +5657,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Remote { type Type = super::super::String; @@ -5664,7 +5665,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField<slug> for super::super::Remote { type Type = super::super::String; @@ -5672,7 +5673,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = super::super::String; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasField<r#type> for super::super::Remote { type Type = super::super::String; @@ -5680,7 +5681,7 @@ pub mod __fields { pub struct jobs; impl cynic::schema::Field for jobs { type Type = Option<Vec<super::super::Job>>; - const NAME: &'static str = "jobs"; + const NAME: &'static ::core::primitive::str = "jobs"; } impl cynic::schema::HasField<jobs> for super::super::Remote { type Type = Option<Vec<super::super::Job>>; @@ -5689,43 +5690,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::jobs { type ArgumentType = Option<super::super::super::JobWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::jobs { type ArgumentType = Option<super::super::super::JobOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField<createdAt> for super::super::Remote { type Type = super::super::DateTime; @@ -5733,7 +5734,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField<updatedAt> for super::super::Remote { type Type = super::super::DateTime; @@ -5741,7 +5742,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Remote { type Type = super::super::String; @@ -5751,13 +5752,13 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = Option<super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, Option<super::super::ID>> for super::super::RemoteWhereInput {} pub struct id_not; impl cynic::schema::Field for id_not { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not"; + const NAME: &'static ::core::primitive::str = "id_not"; } impl cynic::schema::HasInputField<id_not, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5766,7 +5767,7 @@ pub mod __fields { pub struct id_in; impl cynic::schema::Field for id_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_in"; + const NAME: &'static ::core::primitive::str = "id_in"; } impl cynic::schema::HasInputField<id_in, Option<Vec<super::super::ID>>> for super::super::RemoteWhereInput @@ -5775,7 +5776,7 @@ pub mod __fields { pub struct id_not_in; impl cynic::schema::Field for id_not_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_not_in"; + const NAME: &'static ::core::primitive::str = "id_not_in"; } impl cynic::schema::HasInputField<id_not_in, Option<Vec<super::super::ID>>> for super::super::RemoteWhereInput @@ -5784,7 +5785,7 @@ pub mod __fields { pub struct id_lt; impl cynic::schema::Field for id_lt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lt"; + const NAME: &'static ::core::primitive::str = "id_lt"; } impl cynic::schema::HasInputField<id_lt, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5793,7 +5794,7 @@ pub mod __fields { pub struct id_lte; impl cynic::schema::Field for id_lte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lte"; + const NAME: &'static ::core::primitive::str = "id_lte"; } impl cynic::schema::HasInputField<id_lte, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5802,7 +5803,7 @@ pub mod __fields { pub struct id_gt; impl cynic::schema::Field for id_gt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gt"; + const NAME: &'static ::core::primitive::str = "id_gt"; } impl cynic::schema::HasInputField<id_gt, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5811,7 +5812,7 @@ pub mod __fields { pub struct id_gte; impl cynic::schema::Field for id_gte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gte"; + const NAME: &'static ::core::primitive::str = "id_gte"; } impl cynic::schema::HasInputField<id_gte, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5820,7 +5821,7 @@ pub mod __fields { pub struct id_contains; impl cynic::schema::Field for id_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_contains"; + const NAME: &'static ::core::primitive::str = "id_contains"; } impl cynic::schema::HasInputField<id_contains, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5829,7 +5830,7 @@ pub mod __fields { pub struct id_not_contains; impl cynic::schema::Field for id_not_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_contains"; + const NAME: &'static ::core::primitive::str = "id_not_contains"; } impl cynic::schema::HasInputField<id_not_contains, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5838,7 +5839,7 @@ pub mod __fields { pub struct id_starts_with; impl cynic::schema::Field for id_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_starts_with"; + const NAME: &'static ::core::primitive::str = "id_starts_with"; } impl cynic::schema::HasInputField<id_starts_with, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5847,7 +5848,7 @@ pub mod __fields { pub struct id_not_starts_with; impl cynic::schema::Field for id_not_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_starts_with"; + const NAME: &'static ::core::primitive::str = "id_not_starts_with"; } impl cynic::schema::HasInputField<id_not_starts_with, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5856,7 +5857,7 @@ pub mod __fields { pub struct id_ends_with; impl cynic::schema::Field for id_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_ends_with"; + const NAME: &'static ::core::primitive::str = "id_ends_with"; } impl cynic::schema::HasInputField<id_ends_with, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5865,7 +5866,7 @@ pub mod __fields { pub struct id_not_ends_with; impl cynic::schema::Field for id_not_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_ends_with"; + const NAME: &'static ::core::primitive::str = "id_not_ends_with"; } impl cynic::schema::HasInputField<id_not_ends_with, Option<super::super::ID>> for super::super::RemoteWhereInput @@ -5874,7 +5875,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasInputField<name, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5883,7 +5884,7 @@ pub mod __fields { pub struct name_not; impl cynic::schema::Field for name_not { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not"; + const NAME: &'static ::core::primitive::str = "name_not"; } impl cynic::schema::HasInputField<name_not, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5892,7 +5893,7 @@ pub mod __fields { pub struct name_in; impl cynic::schema::Field for name_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_in"; + const NAME: &'static ::core::primitive::str = "name_in"; } impl cynic::schema::HasInputField<name_in, Option<Vec<super::super::String>>> for super::super::RemoteWhereInput @@ -5901,7 +5902,7 @@ pub mod __fields { pub struct name_not_in; impl cynic::schema::Field for name_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_not_in"; + const NAME: &'static ::core::primitive::str = "name_not_in"; } impl cynic::schema::HasInputField<name_not_in, Option<Vec<super::super::String>>> for super::super::RemoteWhereInput @@ -5910,7 +5911,7 @@ pub mod __fields { pub struct name_lt; impl cynic::schema::Field for name_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lt"; + const NAME: &'static ::core::primitive::str = "name_lt"; } impl cynic::schema::HasInputField<name_lt, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5919,7 +5920,7 @@ pub mod __fields { pub struct name_lte; impl cynic::schema::Field for name_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lte"; + const NAME: &'static ::core::primitive::str = "name_lte"; } impl cynic::schema::HasInputField<name_lte, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5928,7 +5929,7 @@ pub mod __fields { pub struct name_gt; impl cynic::schema::Field for name_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gt"; + const NAME: &'static ::core::primitive::str = "name_gt"; } impl cynic::schema::HasInputField<name_gt, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5937,7 +5938,7 @@ pub mod __fields { pub struct name_gte; impl cynic::schema::Field for name_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gte"; + const NAME: &'static ::core::primitive::str = "name_gte"; } impl cynic::schema::HasInputField<name_gte, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5946,7 +5947,7 @@ pub mod __fields { pub struct name_contains; impl cynic::schema::Field for name_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_contains"; + const NAME: &'static ::core::primitive::str = "name_contains"; } impl cynic::schema::HasInputField<name_contains, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5955,7 +5956,7 @@ pub mod __fields { pub struct name_not_contains; impl cynic::schema::Field for name_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_contains"; + const NAME: &'static ::core::primitive::str = "name_not_contains"; } impl cynic::schema::HasInputField<name_not_contains, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5964,7 +5965,7 @@ pub mod __fields { pub struct name_starts_with; impl cynic::schema::Field for name_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_starts_with"; + const NAME: &'static ::core::primitive::str = "name_starts_with"; } impl cynic::schema::HasInputField<name_starts_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5973,7 +5974,7 @@ pub mod __fields { pub struct name_not_starts_with; impl cynic::schema::Field for name_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_starts_with"; + const NAME: &'static ::core::primitive::str = "name_not_starts_with"; } impl cynic::schema::HasInputField<name_not_starts_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5982,7 +5983,7 @@ pub mod __fields { pub struct name_ends_with; impl cynic::schema::Field for name_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_ends_with"; + const NAME: &'static ::core::primitive::str = "name_ends_with"; } impl cynic::schema::HasInputField<name_ends_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -5991,7 +5992,7 @@ pub mod __fields { pub struct name_not_ends_with; impl cynic::schema::Field for name_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_ends_with"; + const NAME: &'static ::core::primitive::str = "name_not_ends_with"; } impl cynic::schema::HasInputField<name_not_ends_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6000,7 +6001,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option<super::super::String>; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6009,7 +6010,7 @@ pub mod __fields { pub struct slug_not; impl cynic::schema::Field for slug_not { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not"; + const NAME: &'static ::core::primitive::str = "slug_not"; } impl cynic::schema::HasInputField<slug_not, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6018,7 +6019,7 @@ pub mod __fields { pub struct slug_in; impl cynic::schema::Field for slug_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_in"; + const NAME: &'static ::core::primitive::str = "slug_in"; } impl cynic::schema::HasInputField<slug_in, Option<Vec<super::super::String>>> for super::super::RemoteWhereInput @@ -6027,7 +6028,7 @@ pub mod __fields { pub struct slug_not_in; impl cynic::schema::Field for slug_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_not_in"; + const NAME: &'static ::core::primitive::str = "slug_not_in"; } impl cynic::schema::HasInputField<slug_not_in, Option<Vec<super::super::String>>> for super::super::RemoteWhereInput @@ -6036,7 +6037,7 @@ pub mod __fields { pub struct slug_lt; impl cynic::schema::Field for slug_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lt"; + const NAME: &'static ::core::primitive::str = "slug_lt"; } impl cynic::schema::HasInputField<slug_lt, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6045,7 +6046,7 @@ pub mod __fields { pub struct slug_lte; impl cynic::schema::Field for slug_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lte"; + const NAME: &'static ::core::primitive::str = "slug_lte"; } impl cynic::schema::HasInputField<slug_lte, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6054,7 +6055,7 @@ pub mod __fields { pub struct slug_gt; impl cynic::schema::Field for slug_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gt"; + const NAME: &'static ::core::primitive::str = "slug_gt"; } impl cynic::schema::HasInputField<slug_gt, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6063,7 +6064,7 @@ pub mod __fields { pub struct slug_gte; impl cynic::schema::Field for slug_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gte"; + const NAME: &'static ::core::primitive::str = "slug_gte"; } impl cynic::schema::HasInputField<slug_gte, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6072,7 +6073,7 @@ pub mod __fields { pub struct slug_contains; impl cynic::schema::Field for slug_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_contains"; + const NAME: &'static ::core::primitive::str = "slug_contains"; } impl cynic::schema::HasInputField<slug_contains, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6081,7 +6082,7 @@ pub mod __fields { pub struct slug_not_contains; impl cynic::schema::Field for slug_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_contains"; + const NAME: &'static ::core::primitive::str = "slug_not_contains"; } impl cynic::schema::HasInputField<slug_not_contains, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6090,7 +6091,7 @@ pub mod __fields { pub struct slug_starts_with; impl cynic::schema::Field for slug_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_starts_with"; } impl cynic::schema::HasInputField<slug_starts_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6099,7 +6100,7 @@ pub mod __fields { pub struct slug_not_starts_with; impl cynic::schema::Field for slug_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_not_starts_with"; } impl cynic::schema::HasInputField<slug_not_starts_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6108,7 +6109,7 @@ pub mod __fields { pub struct slug_ends_with; impl cynic::schema::Field for slug_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_ends_with"; } impl cynic::schema::HasInputField<slug_ends_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6117,7 +6118,7 @@ pub mod __fields { pub struct slug_not_ends_with; impl cynic::schema::Field for slug_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_not_ends_with"; } impl cynic::schema::HasInputField<slug_not_ends_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6126,7 +6127,7 @@ pub mod __fields { pub struct r#type; impl cynic::schema::Field for r#type { type Type = Option<super::super::String>; - const NAME: &'static str = "type"; + const NAME: &'static ::core::primitive::str = "type"; } impl cynic::schema::HasInputField<r#type, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6135,7 +6136,7 @@ pub mod __fields { pub struct type_not; impl cynic::schema::Field for type_not { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not"; + const NAME: &'static ::core::primitive::str = "type_not"; } impl cynic::schema::HasInputField<type_not, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6144,7 +6145,7 @@ pub mod __fields { pub struct type_in; impl cynic::schema::Field for type_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "type_in"; + const NAME: &'static ::core::primitive::str = "type_in"; } impl cynic::schema::HasInputField<type_in, Option<Vec<super::super::String>>> for super::super::RemoteWhereInput @@ -6153,7 +6154,7 @@ pub mod __fields { pub struct type_not_in; impl cynic::schema::Field for type_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "type_not_in"; + const NAME: &'static ::core::primitive::str = "type_not_in"; } impl cynic::schema::HasInputField<type_not_in, Option<Vec<super::super::String>>> for super::super::RemoteWhereInput @@ -6162,7 +6163,7 @@ pub mod __fields { pub struct type_lt; impl cynic::schema::Field for type_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "type_lt"; + const NAME: &'static ::core::primitive::str = "type_lt"; } impl cynic::schema::HasInputField<type_lt, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6171,7 +6172,7 @@ pub mod __fields { pub struct type_lte; impl cynic::schema::Field for type_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "type_lte"; + const NAME: &'static ::core::primitive::str = "type_lte"; } impl cynic::schema::HasInputField<type_lte, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6180,7 +6181,7 @@ pub mod __fields { pub struct type_gt; impl cynic::schema::Field for type_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "type_gt"; + const NAME: &'static ::core::primitive::str = "type_gt"; } impl cynic::schema::HasInputField<type_gt, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6189,7 +6190,7 @@ pub mod __fields { pub struct type_gte; impl cynic::schema::Field for type_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "type_gte"; + const NAME: &'static ::core::primitive::str = "type_gte"; } impl cynic::schema::HasInputField<type_gte, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6198,7 +6199,7 @@ pub mod __fields { pub struct type_contains; impl cynic::schema::Field for type_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "type_contains"; + const NAME: &'static ::core::primitive::str = "type_contains"; } impl cynic::schema::HasInputField<type_contains, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6207,7 +6208,7 @@ pub mod __fields { pub struct type_not_contains; impl cynic::schema::Field for type_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not_contains"; + const NAME: &'static ::core::primitive::str = "type_not_contains"; } impl cynic::schema::HasInputField<type_not_contains, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6216,7 +6217,7 @@ pub mod __fields { pub struct type_starts_with; impl cynic::schema::Field for type_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_starts_with"; + const NAME: &'static ::core::primitive::str = "type_starts_with"; } impl cynic::schema::HasInputField<type_starts_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6225,7 +6226,7 @@ pub mod __fields { pub struct type_not_starts_with; impl cynic::schema::Field for type_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not_starts_with"; + const NAME: &'static ::core::primitive::str = "type_not_starts_with"; } impl cynic::schema::HasInputField<type_not_starts_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6234,7 +6235,7 @@ pub mod __fields { pub struct type_ends_with; impl cynic::schema::Field for type_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_ends_with"; + const NAME: &'static ::core::primitive::str = "type_ends_with"; } impl cynic::schema::HasInputField<type_ends_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6243,7 +6244,7 @@ pub mod __fields { pub struct type_not_ends_with; impl cynic::schema::Field for type_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "type_not_ends_with"; + const NAME: &'static ::core::primitive::str = "type_not_ends_with"; } impl cynic::schema::HasInputField<type_not_ends_with, Option<super::super::String>> for super::super::RemoteWhereInput @@ -6252,7 +6253,7 @@ pub mod __fields { pub struct jobs_every; impl cynic::schema::Field for jobs_every { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_every"; + const NAME: &'static ::core::primitive::str = "jobs_every"; } impl cynic::schema::HasInputField<jobs_every, Option<super::super::JobWhereInput>> for super::super::RemoteWhereInput @@ -6261,7 +6262,7 @@ pub mod __fields { pub struct jobs_some; impl cynic::schema::Field for jobs_some { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_some"; + const NAME: &'static ::core::primitive::str = "jobs_some"; } impl cynic::schema::HasInputField<jobs_some, Option<super::super::JobWhereInput>> for super::super::RemoteWhereInput @@ -6270,7 +6271,7 @@ pub mod __fields { pub struct jobs_none; impl cynic::schema::Field for jobs_none { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_none"; + const NAME: &'static ::core::primitive::str = "jobs_none"; } impl cynic::schema::HasInputField<jobs_none, Option<super::super::JobWhereInput>> for super::super::RemoteWhereInput @@ -6279,7 +6280,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasInputField<createdAt, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6288,7 +6289,7 @@ pub mod __fields { pub struct createdAt_not; impl cynic::schema::Field for createdAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_not"; + const NAME: &'static ::core::primitive::str = "createdAt_not"; } impl cynic::schema::HasInputField<createdAt_not, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6297,7 +6298,7 @@ pub mod __fields { pub struct createdAt_in; impl cynic::schema::Field for createdAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_in"; + const NAME: &'static ::core::primitive::str = "createdAt_in"; } impl cynic::schema::HasInputField<createdAt_in, Option<Vec<super::super::DateTime>>> for super::super::RemoteWhereInput @@ -6306,7 +6307,7 @@ pub mod __fields { pub struct createdAt_not_in; impl cynic::schema::Field for createdAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_not_in"; + const NAME: &'static ::core::primitive::str = "createdAt_not_in"; } impl cynic::schema::HasInputField<createdAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::RemoteWhereInput @@ -6315,7 +6316,7 @@ pub mod __fields { pub struct createdAt_lt; impl cynic::schema::Field for createdAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lt"; + const NAME: &'static ::core::primitive::str = "createdAt_lt"; } impl cynic::schema::HasInputField<createdAt_lt, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6324,7 +6325,7 @@ pub mod __fields { pub struct createdAt_lte; impl cynic::schema::Field for createdAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lte"; + const NAME: &'static ::core::primitive::str = "createdAt_lte"; } impl cynic::schema::HasInputField<createdAt_lte, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6333,7 +6334,7 @@ pub mod __fields { pub struct createdAt_gt; impl cynic::schema::Field for createdAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gt"; + const NAME: &'static ::core::primitive::str = "createdAt_gt"; } impl cynic::schema::HasInputField<createdAt_gt, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6342,7 +6343,7 @@ pub mod __fields { pub struct createdAt_gte; impl cynic::schema::Field for createdAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gte"; + const NAME: &'static ::core::primitive::str = "createdAt_gte"; } impl cynic::schema::HasInputField<createdAt_gte, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6351,7 +6352,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasInputField<updatedAt, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6360,7 +6361,7 @@ pub mod __fields { pub struct updatedAt_not; impl cynic::schema::Field for updatedAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_not"; + const NAME: &'static ::core::primitive::str = "updatedAt_not"; } impl cynic::schema::HasInputField<updatedAt_not, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6369,7 +6370,7 @@ pub mod __fields { pub struct updatedAt_in; impl cynic::schema::Field for updatedAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_in"; } impl cynic::schema::HasInputField<updatedAt_in, Option<Vec<super::super::DateTime>>> for super::super::RemoteWhereInput @@ -6378,7 +6379,7 @@ pub mod __fields { pub struct updatedAt_not_in; impl cynic::schema::Field for updatedAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_not_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_not_in"; } impl cynic::schema::HasInputField<updatedAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::RemoteWhereInput @@ -6387,7 +6388,7 @@ pub mod __fields { pub struct updatedAt_lt; impl cynic::schema::Field for updatedAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lt"; + const NAME: &'static ::core::primitive::str = "updatedAt_lt"; } impl cynic::schema::HasInputField<updatedAt_lt, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6396,7 +6397,7 @@ pub mod __fields { pub struct updatedAt_lte; impl cynic::schema::Field for updatedAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lte"; + const NAME: &'static ::core::primitive::str = "updatedAt_lte"; } impl cynic::schema::HasInputField<updatedAt_lte, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6405,7 +6406,7 @@ pub mod __fields { pub struct updatedAt_gt; impl cynic::schema::Field for updatedAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gt"; + const NAME: &'static ::core::primitive::str = "updatedAt_gt"; } impl cynic::schema::HasInputField<updatedAt_gt, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6414,7 +6415,7 @@ pub mod __fields { pub struct updatedAt_gte; impl cynic::schema::Field for updatedAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gte"; + const NAME: &'static ::core::primitive::str = "updatedAt_gte"; } impl cynic::schema::HasInputField<updatedAt_gte, Option<super::super::DateTime>> for super::super::RemoteWhereInput @@ -6423,7 +6424,7 @@ pub mod __fields { pub struct AND; impl cynic::schema::Field for AND { type Type = Option<Vec<super::super::RemoteWhereInput>>; - const NAME: &'static str = "AND"; + const NAME: &'static ::core::primitive::str = "AND"; } impl cynic::schema::HasInputField<AND, Option<Vec<super::super::RemoteWhereInput>>> for super::super::RemoteWhereInput @@ -6432,7 +6433,7 @@ pub mod __fields { pub struct OR; impl cynic::schema::Field for OR { type Type = Option<Vec<super::super::RemoteWhereInput>>; - const NAME: &'static str = "OR"; + const NAME: &'static ::core::primitive::str = "OR"; } impl cynic::schema::HasInputField<OR, Option<Vec<super::super::RemoteWhereInput>>> for super::super::RemoteWhereInput @@ -6441,7 +6442,7 @@ pub mod __fields { pub struct NOT; impl cynic::schema::Field for NOT { type Type = Option<Vec<super::super::RemoteWhereInput>>; - const NAME: &'static str = "NOT"; + const NAME: &'static ::core::primitive::str = "NOT"; } impl cynic::schema::HasInputField<NOT, Option<Vec<super::super::RemoteWhereInput>>> for super::super::RemoteWhereInput @@ -6452,13 +6453,13 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasInputField<name, super::super::String> for super::super::SubscribeInput {} pub struct email; impl cynic::schema::Field for email { type Type = super::super::String; - const NAME: &'static str = "email"; + const NAME: &'static ::core::primitive::str = "email"; } impl cynic::schema::HasInputField<email, super::super::String> for super::super::SubscribeInput {} } @@ -6466,7 +6467,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Tag { type Type = super::super::ID; @@ -6474,7 +6475,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = super::super::String; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Tag { type Type = super::super::String; @@ -6482,7 +6483,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = super::super::String; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasField<slug> for super::super::Tag { type Type = super::super::String; @@ -6490,7 +6491,7 @@ pub mod __fields { pub struct jobs; impl cynic::schema::Field for jobs { type Type = Option<Vec<super::super::Job>>; - const NAME: &'static str = "jobs"; + const NAME: &'static ::core::primitive::str = "jobs"; } impl cynic::schema::HasField<jobs> for super::super::Tag { type Type = Option<Vec<super::super::Job>>; @@ -6499,43 +6500,43 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::jobs { type ArgumentType = Option<super::super::super::JobWhereInput>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } pub struct orderBy; impl cynic::schema::HasArgument<orderBy> for super::jobs { type ArgumentType = Option<super::super::super::JobOrderByInput>; - const NAME: &'static str = "orderBy"; + const NAME: &'static ::core::primitive::str = "orderBy"; } pub struct skip; impl cynic::schema::HasArgument<skip> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "skip"; + const NAME: &'static ::core::primitive::str = "skip"; } pub struct after; impl cynic::schema::HasArgument<after> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct before; impl cynic::schema::HasArgument<before> for super::jobs { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct first; impl cynic::schema::HasArgument<first> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct last; impl cynic::schema::HasArgument<last> for super::jobs { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField<createdAt> for super::super::Tag { type Type = super::super::DateTime; @@ -6543,7 +6544,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField<updatedAt> for super::super::Tag { type Type = super::super::DateTime; @@ -6551,7 +6552,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Tag { type Type = super::super::String; @@ -6561,13 +6562,13 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = Option<super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, Option<super::super::ID>> for super::super::TagWhereInput {} pub struct id_not; impl cynic::schema::Field for id_not { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not"; + const NAME: &'static ::core::primitive::str = "id_not"; } impl cynic::schema::HasInputField<id_not, Option<super::super::ID>> for super::super::TagWhereInput @@ -6576,7 +6577,7 @@ pub mod __fields { pub struct id_in; impl cynic::schema::Field for id_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_in"; + const NAME: &'static ::core::primitive::str = "id_in"; } impl cynic::schema::HasInputField<id_in, Option<Vec<super::super::ID>>> for super::super::TagWhereInput @@ -6585,7 +6586,7 @@ pub mod __fields { pub struct id_not_in; impl cynic::schema::Field for id_not_in { type Type = Option<Vec<super::super::ID>>; - const NAME: &'static str = "id_not_in"; + const NAME: &'static ::core::primitive::str = "id_not_in"; } impl cynic::schema::HasInputField<id_not_in, Option<Vec<super::super::ID>>> for super::super::TagWhereInput @@ -6594,13 +6595,13 @@ pub mod __fields { pub struct id_lt; impl cynic::schema::Field for id_lt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lt"; + const NAME: &'static ::core::primitive::str = "id_lt"; } impl cynic::schema::HasInputField<id_lt, Option<super::super::ID>> for super::super::TagWhereInput {} pub struct id_lte; impl cynic::schema::Field for id_lte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_lte"; + const NAME: &'static ::core::primitive::str = "id_lte"; } impl cynic::schema::HasInputField<id_lte, Option<super::super::ID>> for super::super::TagWhereInput @@ -6609,13 +6610,13 @@ pub mod __fields { pub struct id_gt; impl cynic::schema::Field for id_gt { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gt"; + const NAME: &'static ::core::primitive::str = "id_gt"; } impl cynic::schema::HasInputField<id_gt, Option<super::super::ID>> for super::super::TagWhereInput {} pub struct id_gte; impl cynic::schema::Field for id_gte { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_gte"; + const NAME: &'static ::core::primitive::str = "id_gte"; } impl cynic::schema::HasInputField<id_gte, Option<super::super::ID>> for super::super::TagWhereInput @@ -6624,7 +6625,7 @@ pub mod __fields { pub struct id_contains; impl cynic::schema::Field for id_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_contains"; + const NAME: &'static ::core::primitive::str = "id_contains"; } impl cynic::schema::HasInputField<id_contains, Option<super::super::ID>> for super::super::TagWhereInput @@ -6633,7 +6634,7 @@ pub mod __fields { pub struct id_not_contains; impl cynic::schema::Field for id_not_contains { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_contains"; + const NAME: &'static ::core::primitive::str = "id_not_contains"; } impl cynic::schema::HasInputField<id_not_contains, Option<super::super::ID>> for super::super::TagWhereInput @@ -6642,7 +6643,7 @@ pub mod __fields { pub struct id_starts_with; impl cynic::schema::Field for id_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_starts_with"; + const NAME: &'static ::core::primitive::str = "id_starts_with"; } impl cynic::schema::HasInputField<id_starts_with, Option<super::super::ID>> for super::super::TagWhereInput @@ -6651,7 +6652,7 @@ pub mod __fields { pub struct id_not_starts_with; impl cynic::schema::Field for id_not_starts_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_starts_with"; + const NAME: &'static ::core::primitive::str = "id_not_starts_with"; } impl cynic::schema::HasInputField<id_not_starts_with, Option<super::super::ID>> for super::super::TagWhereInput @@ -6660,7 +6661,7 @@ pub mod __fields { pub struct id_ends_with; impl cynic::schema::Field for id_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_ends_with"; + const NAME: &'static ::core::primitive::str = "id_ends_with"; } impl cynic::schema::HasInputField<id_ends_with, Option<super::super::ID>> for super::super::TagWhereInput @@ -6669,7 +6670,7 @@ pub mod __fields { pub struct id_not_ends_with; impl cynic::schema::Field for id_not_ends_with { type Type = Option<super::super::ID>; - const NAME: &'static str = "id_not_ends_with"; + const NAME: &'static ::core::primitive::str = "id_not_ends_with"; } impl cynic::schema::HasInputField<id_not_ends_with, Option<super::super::ID>> for super::super::TagWhereInput @@ -6678,7 +6679,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasInputField<name, Option<super::super::String>> for super::super::TagWhereInput @@ -6687,7 +6688,7 @@ pub mod __fields { pub struct name_not; impl cynic::schema::Field for name_not { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not"; + const NAME: &'static ::core::primitive::str = "name_not"; } impl cynic::schema::HasInputField<name_not, Option<super::super::String>> for super::super::TagWhereInput @@ -6696,7 +6697,7 @@ pub mod __fields { pub struct name_in; impl cynic::schema::Field for name_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_in"; + const NAME: &'static ::core::primitive::str = "name_in"; } impl cynic::schema::HasInputField<name_in, Option<Vec<super::super::String>>> for super::super::TagWhereInput @@ -6705,7 +6706,7 @@ pub mod __fields { pub struct name_not_in; impl cynic::schema::Field for name_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "name_not_in"; + const NAME: &'static ::core::primitive::str = "name_not_in"; } impl cynic::schema::HasInputField<name_not_in, Option<Vec<super::super::String>>> for super::super::TagWhereInput @@ -6714,7 +6715,7 @@ pub mod __fields { pub struct name_lt; impl cynic::schema::Field for name_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lt"; + const NAME: &'static ::core::primitive::str = "name_lt"; } impl cynic::schema::HasInputField<name_lt, Option<super::super::String>> for super::super::TagWhereInput @@ -6723,7 +6724,7 @@ pub mod __fields { pub struct name_lte; impl cynic::schema::Field for name_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_lte"; + const NAME: &'static ::core::primitive::str = "name_lte"; } impl cynic::schema::HasInputField<name_lte, Option<super::super::String>> for super::super::TagWhereInput @@ -6732,7 +6733,7 @@ pub mod __fields { pub struct name_gt; impl cynic::schema::Field for name_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gt"; + const NAME: &'static ::core::primitive::str = "name_gt"; } impl cynic::schema::HasInputField<name_gt, Option<super::super::String>> for super::super::TagWhereInput @@ -6741,7 +6742,7 @@ pub mod __fields { pub struct name_gte; impl cynic::schema::Field for name_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "name_gte"; + const NAME: &'static ::core::primitive::str = "name_gte"; } impl cynic::schema::HasInputField<name_gte, Option<super::super::String>> for super::super::TagWhereInput @@ -6750,7 +6751,7 @@ pub mod __fields { pub struct name_contains; impl cynic::schema::Field for name_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_contains"; + const NAME: &'static ::core::primitive::str = "name_contains"; } impl cynic::schema::HasInputField<name_contains, Option<super::super::String>> for super::super::TagWhereInput @@ -6759,7 +6760,7 @@ pub mod __fields { pub struct name_not_contains; impl cynic::schema::Field for name_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_contains"; + const NAME: &'static ::core::primitive::str = "name_not_contains"; } impl cynic::schema::HasInputField<name_not_contains, Option<super::super::String>> for super::super::TagWhereInput @@ -6768,7 +6769,7 @@ pub mod __fields { pub struct name_starts_with; impl cynic::schema::Field for name_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_starts_with"; + const NAME: &'static ::core::primitive::str = "name_starts_with"; } impl cynic::schema::HasInputField<name_starts_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6777,7 +6778,7 @@ pub mod __fields { pub struct name_not_starts_with; impl cynic::schema::Field for name_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_starts_with"; + const NAME: &'static ::core::primitive::str = "name_not_starts_with"; } impl cynic::schema::HasInputField<name_not_starts_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6786,7 +6787,7 @@ pub mod __fields { pub struct name_ends_with; impl cynic::schema::Field for name_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_ends_with"; + const NAME: &'static ::core::primitive::str = "name_ends_with"; } impl cynic::schema::HasInputField<name_ends_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6795,7 +6796,7 @@ pub mod __fields { pub struct name_not_ends_with; impl cynic::schema::Field for name_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "name_not_ends_with"; + const NAME: &'static ::core::primitive::str = "name_not_ends_with"; } impl cynic::schema::HasInputField<name_not_ends_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6804,7 +6805,7 @@ pub mod __fields { pub struct slug; impl cynic::schema::Field for slug { type Type = Option<super::super::String>; - const NAME: &'static str = "slug"; + const NAME: &'static ::core::primitive::str = "slug"; } impl cynic::schema::HasInputField<slug, Option<super::super::String>> for super::super::TagWhereInput @@ -6813,7 +6814,7 @@ pub mod __fields { pub struct slug_not; impl cynic::schema::Field for slug_not { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not"; + const NAME: &'static ::core::primitive::str = "slug_not"; } impl cynic::schema::HasInputField<slug_not, Option<super::super::String>> for super::super::TagWhereInput @@ -6822,7 +6823,7 @@ pub mod __fields { pub struct slug_in; impl cynic::schema::Field for slug_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_in"; + const NAME: &'static ::core::primitive::str = "slug_in"; } impl cynic::schema::HasInputField<slug_in, Option<Vec<super::super::String>>> for super::super::TagWhereInput @@ -6831,7 +6832,7 @@ pub mod __fields { pub struct slug_not_in; impl cynic::schema::Field for slug_not_in { type Type = Option<Vec<super::super::String>>; - const NAME: &'static str = "slug_not_in"; + const NAME: &'static ::core::primitive::str = "slug_not_in"; } impl cynic::schema::HasInputField<slug_not_in, Option<Vec<super::super::String>>> for super::super::TagWhereInput @@ -6840,7 +6841,7 @@ pub mod __fields { pub struct slug_lt; impl cynic::schema::Field for slug_lt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lt"; + const NAME: &'static ::core::primitive::str = "slug_lt"; } impl cynic::schema::HasInputField<slug_lt, Option<super::super::String>> for super::super::TagWhereInput @@ -6849,7 +6850,7 @@ pub mod __fields { pub struct slug_lte; impl cynic::schema::Field for slug_lte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_lte"; + const NAME: &'static ::core::primitive::str = "slug_lte"; } impl cynic::schema::HasInputField<slug_lte, Option<super::super::String>> for super::super::TagWhereInput @@ -6858,7 +6859,7 @@ pub mod __fields { pub struct slug_gt; impl cynic::schema::Field for slug_gt { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gt"; + const NAME: &'static ::core::primitive::str = "slug_gt"; } impl cynic::schema::HasInputField<slug_gt, Option<super::super::String>> for super::super::TagWhereInput @@ -6867,7 +6868,7 @@ pub mod __fields { pub struct slug_gte; impl cynic::schema::Field for slug_gte { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_gte"; + const NAME: &'static ::core::primitive::str = "slug_gte"; } impl cynic::schema::HasInputField<slug_gte, Option<super::super::String>> for super::super::TagWhereInput @@ -6876,7 +6877,7 @@ pub mod __fields { pub struct slug_contains; impl cynic::schema::Field for slug_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_contains"; + const NAME: &'static ::core::primitive::str = "slug_contains"; } impl cynic::schema::HasInputField<slug_contains, Option<super::super::String>> for super::super::TagWhereInput @@ -6885,7 +6886,7 @@ pub mod __fields { pub struct slug_not_contains; impl cynic::schema::Field for slug_not_contains { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_contains"; + const NAME: &'static ::core::primitive::str = "slug_not_contains"; } impl cynic::schema::HasInputField<slug_not_contains, Option<super::super::String>> for super::super::TagWhereInput @@ -6894,7 +6895,7 @@ pub mod __fields { pub struct slug_starts_with; impl cynic::schema::Field for slug_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_starts_with"; } impl cynic::schema::HasInputField<slug_starts_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6903,7 +6904,7 @@ pub mod __fields { pub struct slug_not_starts_with; impl cynic::schema::Field for slug_not_starts_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_starts_with"; + const NAME: &'static ::core::primitive::str = "slug_not_starts_with"; } impl cynic::schema::HasInputField<slug_not_starts_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6912,7 +6913,7 @@ pub mod __fields { pub struct slug_ends_with; impl cynic::schema::Field for slug_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_ends_with"; } impl cynic::schema::HasInputField<slug_ends_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6921,7 +6922,7 @@ pub mod __fields { pub struct slug_not_ends_with; impl cynic::schema::Field for slug_not_ends_with { type Type = Option<super::super::String>; - const NAME: &'static str = "slug_not_ends_with"; + const NAME: &'static ::core::primitive::str = "slug_not_ends_with"; } impl cynic::schema::HasInputField<slug_not_ends_with, Option<super::super::String>> for super::super::TagWhereInput @@ -6930,7 +6931,7 @@ pub mod __fields { pub struct jobs_every; impl cynic::schema::Field for jobs_every { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_every"; + const NAME: &'static ::core::primitive::str = "jobs_every"; } impl cynic::schema::HasInputField<jobs_every, Option<super::super::JobWhereInput>> for super::super::TagWhereInput @@ -6939,7 +6940,7 @@ pub mod __fields { pub struct jobs_some; impl cynic::schema::Field for jobs_some { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_some"; + const NAME: &'static ::core::primitive::str = "jobs_some"; } impl cynic::schema::HasInputField<jobs_some, Option<super::super::JobWhereInput>> for super::super::TagWhereInput @@ -6948,7 +6949,7 @@ pub mod __fields { pub struct jobs_none; impl cynic::schema::Field for jobs_none { type Type = Option<super::super::JobWhereInput>; - const NAME: &'static str = "jobs_none"; + const NAME: &'static ::core::primitive::str = "jobs_none"; } impl cynic::schema::HasInputField<jobs_none, Option<super::super::JobWhereInput>> for super::super::TagWhereInput @@ -6957,7 +6958,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasInputField<createdAt, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -6966,7 +6967,7 @@ pub mod __fields { pub struct createdAt_not; impl cynic::schema::Field for createdAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_not"; + const NAME: &'static ::core::primitive::str = "createdAt_not"; } impl cynic::schema::HasInputField<createdAt_not, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -6975,7 +6976,7 @@ pub mod __fields { pub struct createdAt_in; impl cynic::schema::Field for createdAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_in"; + const NAME: &'static ::core::primitive::str = "createdAt_in"; } impl cynic::schema::HasInputField<createdAt_in, Option<Vec<super::super::DateTime>>> for super::super::TagWhereInput @@ -6984,7 +6985,7 @@ pub mod __fields { pub struct createdAt_not_in; impl cynic::schema::Field for createdAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "createdAt_not_in"; + const NAME: &'static ::core::primitive::str = "createdAt_not_in"; } impl cynic::schema::HasInputField<createdAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::TagWhereInput @@ -6993,7 +6994,7 @@ pub mod __fields { pub struct createdAt_lt; impl cynic::schema::Field for createdAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lt"; + const NAME: &'static ::core::primitive::str = "createdAt_lt"; } impl cynic::schema::HasInputField<createdAt_lt, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7002,7 +7003,7 @@ pub mod __fields { pub struct createdAt_lte; impl cynic::schema::Field for createdAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_lte"; + const NAME: &'static ::core::primitive::str = "createdAt_lte"; } impl cynic::schema::HasInputField<createdAt_lte, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7011,7 +7012,7 @@ pub mod __fields { pub struct createdAt_gt; impl cynic::schema::Field for createdAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gt"; + const NAME: &'static ::core::primitive::str = "createdAt_gt"; } impl cynic::schema::HasInputField<createdAt_gt, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7020,7 +7021,7 @@ pub mod __fields { pub struct createdAt_gte; impl cynic::schema::Field for createdAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "createdAt_gte"; + const NAME: &'static ::core::primitive::str = "createdAt_gte"; } impl cynic::schema::HasInputField<createdAt_gte, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7029,7 +7030,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasInputField<updatedAt, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7038,7 +7039,7 @@ pub mod __fields { pub struct updatedAt_not; impl cynic::schema::Field for updatedAt_not { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_not"; + const NAME: &'static ::core::primitive::str = "updatedAt_not"; } impl cynic::schema::HasInputField<updatedAt_not, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7047,7 +7048,7 @@ pub mod __fields { pub struct updatedAt_in; impl cynic::schema::Field for updatedAt_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_in"; } impl cynic::schema::HasInputField<updatedAt_in, Option<Vec<super::super::DateTime>>> for super::super::TagWhereInput @@ -7056,7 +7057,7 @@ pub mod __fields { pub struct updatedAt_not_in; impl cynic::schema::Field for updatedAt_not_in { type Type = Option<Vec<super::super::DateTime>>; - const NAME: &'static str = "updatedAt_not_in"; + const NAME: &'static ::core::primitive::str = "updatedAt_not_in"; } impl cynic::schema::HasInputField<updatedAt_not_in, Option<Vec<super::super::DateTime>>> for super::super::TagWhereInput @@ -7065,7 +7066,7 @@ pub mod __fields { pub struct updatedAt_lt; impl cynic::schema::Field for updatedAt_lt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lt"; + const NAME: &'static ::core::primitive::str = "updatedAt_lt"; } impl cynic::schema::HasInputField<updatedAt_lt, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7074,7 +7075,7 @@ pub mod __fields { pub struct updatedAt_lte; impl cynic::schema::Field for updatedAt_lte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_lte"; + const NAME: &'static ::core::primitive::str = "updatedAt_lte"; } impl cynic::schema::HasInputField<updatedAt_lte, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7083,7 +7084,7 @@ pub mod __fields { pub struct updatedAt_gt; impl cynic::schema::Field for updatedAt_gt { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gt"; + const NAME: &'static ::core::primitive::str = "updatedAt_gt"; } impl cynic::schema::HasInputField<updatedAt_gt, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7092,7 +7093,7 @@ pub mod __fields { pub struct updatedAt_gte; impl cynic::schema::Field for updatedAt_gte { type Type = Option<super::super::DateTime>; - const NAME: &'static str = "updatedAt_gte"; + const NAME: &'static ::core::primitive::str = "updatedAt_gte"; } impl cynic::schema::HasInputField<updatedAt_gte, Option<super::super::DateTime>> for super::super::TagWhereInput @@ -7101,7 +7102,7 @@ pub mod __fields { pub struct AND; impl cynic::schema::Field for AND { type Type = Option<Vec<super::super::TagWhereInput>>; - const NAME: &'static str = "AND"; + const NAME: &'static ::core::primitive::str = "AND"; } impl cynic::schema::HasInputField<AND, Option<Vec<super::super::TagWhereInput>>> for super::super::TagWhereInput @@ -7110,7 +7111,7 @@ pub mod __fields { pub struct OR; impl cynic::schema::Field for OR { type Type = Option<Vec<super::super::TagWhereInput>>; - const NAME: &'static str = "OR"; + const NAME: &'static ::core::primitive::str = "OR"; } impl cynic::schema::HasInputField<OR, Option<Vec<super::super::TagWhereInput>>> for super::super::TagWhereInput @@ -7119,7 +7120,7 @@ pub mod __fields { pub struct NOT; impl cynic::schema::Field for NOT { type Type = Option<Vec<super::super::TagWhereInput>>; - const NAME: &'static str = "NOT"; + const NAME: &'static ::core::primitive::str = "NOT"; } impl cynic::schema::HasInputField<NOT, Option<Vec<super::super::TagWhereInput>>> for super::super::TagWhereInput @@ -7130,13 +7131,13 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, super::super::ID> for super::super::UpdateCompanyInput {} pub struct logoUrl; impl cynic::schema::Field for logoUrl { type Type = super::super::String; - const NAME: &'static str = "logoUrl"; + const NAME: &'static ::core::primitive::str = "logoUrl"; } impl cynic::schema::HasInputField<logoUrl, super::super::String> for super::super::UpdateCompanyInput @@ -7147,13 +7148,13 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasInputField<id, super::super::ID> for super::super::UpdateJobInput {} pub struct description; impl cynic::schema::Field for description { type Type = super::super::String; - const NAME: &'static str = "description"; + const NAME: &'static ::core::primitive::str = "description"; } impl cynic::schema::HasInputField<description, super::super::String> for super::super::UpdateJobInput @@ -7164,7 +7165,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::User { type Type = super::super::ID; @@ -7172,7 +7173,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::User { type Type = Option<super::super::String>; @@ -7180,7 +7181,7 @@ pub mod __fields { pub struct email; impl cynic::schema::Field for email { type Type = super::super::String; - const NAME: &'static str = "email"; + const NAME: &'static ::core::primitive::str = "email"; } impl cynic::schema::HasField<email> for super::super::User { type Type = super::super::String; @@ -7188,7 +7189,7 @@ pub mod __fields { pub struct subscribe; impl cynic::schema::Field for subscribe { type Type = super::super::Boolean; - const NAME: &'static str = "subscribe"; + const NAME: &'static ::core::primitive::str = "subscribe"; } impl cynic::schema::HasField<subscribe> for super::super::User { type Type = super::super::Boolean; @@ -7196,7 +7197,7 @@ pub mod __fields { pub struct createdAt; impl cynic::schema::Field for createdAt { type Type = super::super::DateTime; - const NAME: &'static str = "createdAt"; + const NAME: &'static ::core::primitive::str = "createdAt"; } impl cynic::schema::HasField<createdAt> for super::super::User { type Type = super::super::DateTime; @@ -7204,7 +7205,7 @@ pub mod __fields { pub struct updatedAt; impl cynic::schema::Field for updatedAt { type Type = super::super::DateTime; - const NAME: &'static str = "updatedAt"; + const NAME: &'static ::core::primitive::str = "updatedAt"; } impl cynic::schema::HasField<updatedAt> for super::super::User { type Type = super::super::DateTime; @@ -7212,7 +7213,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::User { type Type = super::super::String; @@ -7298,4 +7299,3 @@ pub mod variable { const TYPE: VariableType = VariableType::Named("ID"); } } - diff --git a/cynic-codegen/tests/snapshots/use_schema__simple.graphql.snap b/cynic-codegen/tests/snapshots/use_schema__simple.graphql.snap index 003da2cfb..c72fb8103 100644 --- a/cynic-codegen/tests/snapshots/use_schema__simple.graphql.snap +++ b/cynic-codegen/tests/snapshots/use_schema__simple.graphql.snap @@ -1,6 +1,7 @@ --- source: cynic-codegen/tests/use-schema.rs expression: "format_code(format!(\"{}\", tokens))" +snapshot_kind: text --- impl cynic::schema::QueryRoot for Query {} pub struct AnInputType; @@ -8,7 +9,7 @@ impl cynic::schema::InputObjectMarker for AnInputType {} pub struct Dessert {} pub struct JSON {} impl cynic::schema::NamedType for JSON { - const NAME: &'static str = "JSON"; + const NAME: &'static ::core::primitive::str = "JSON"; } pub struct MyUnionType {} pub struct Nested; @@ -17,16 +18,16 @@ pub struct TestStruct; impl cynic::schema::HasSubtype<Nested> for MyUnionType {} impl cynic::schema::HasSubtype<TestStruct> for MyUnionType {} impl cynic::schema::NamedType for MyUnionType { - const NAME: &'static str = "MyUnionType"; + const NAME: &'static ::core::primitive::str = "MyUnionType"; } impl cynic::schema::NamedType for Nested { - const NAME: &'static str = "Nested"; + const NAME: &'static ::core::primitive::str = "Nested"; } impl cynic::schema::NamedType for Query { - const NAME: &'static str = "Query"; + const NAME: &'static ::core::primitive::str = "Query"; } impl cynic::schema::NamedType for TestStruct { - const NAME: &'static str = "TestStruct"; + const NAME: &'static ::core::primitive::str = "TestStruct"; } #[allow(non_snake_case, non_camel_case_types)] pub mod __fields { @@ -34,7 +35,7 @@ pub mod __fields { pub struct favouriteDessert; impl cynic::schema::Field for favouriteDessert { type Type = Option<super::super::Dessert>; - const NAME: &'static str = "favouriteDessert"; + const NAME: &'static ::core::primitive::str = "favouriteDessert"; } impl cynic::schema::HasInputField<favouriteDessert, Option<super::super::Dessert>> for super::super::AnInputType @@ -45,7 +46,7 @@ pub mod __fields { pub struct aString; impl cynic::schema::Field for aString { type Type = super::super::String; - const NAME: &'static str = "aString"; + const NAME: &'static ::core::primitive::str = "aString"; } impl cynic::schema::HasField<aString> for super::super::Nested { type Type = super::super::String; @@ -53,7 +54,7 @@ pub mod __fields { pub struct optString; impl cynic::schema::Field for optString { type Type = Option<super::super::String>; - const NAME: &'static str = "optString"; + const NAME: &'static ::core::primitive::str = "optString"; } impl cynic::schema::HasField<optString> for super::super::Nested { type Type = Option<super::super::String>; @@ -61,7 +62,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Nested { type Type = super::super::String; @@ -71,7 +72,7 @@ pub mod __fields { pub struct testStruct; impl cynic::schema::Field for testStruct { type Type = Option<super::super::TestStruct>; - const NAME: &'static str = "testStruct"; + const NAME: &'static ::core::primitive::str = "testStruct"; } impl cynic::schema::HasField<testStruct> for super::super::Query { type Type = Option<super::super::TestStruct>; @@ -79,7 +80,7 @@ pub mod __fields { pub struct myUnion; impl cynic::schema::Field for myUnion { type Type = Option<super::super::MyUnionType>; - const NAME: &'static str = "myUnion"; + const NAME: &'static ::core::primitive::str = "myUnion"; } impl cynic::schema::HasField<myUnion> for super::super::Query { type Type = Option<super::super::MyUnionType>; @@ -87,7 +88,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Query { type Type = super::super::String; @@ -97,7 +98,7 @@ pub mod __fields { pub struct fieldOne; impl cynic::schema::Field for fieldOne { type Type = super::super::String; - const NAME: &'static str = "fieldOne"; + const NAME: &'static ::core::primitive::str = "fieldOne"; } impl cynic::schema::HasField<fieldOne> for super::super::TestStruct { type Type = super::super::String; @@ -106,18 +107,18 @@ pub mod __fields { pub struct x; impl cynic::schema::HasArgument<x> for super::fieldOne { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "x"; + const NAME: &'static ::core::primitive::str = "x"; } pub struct y; impl cynic::schema::HasArgument<y> for super::fieldOne { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "y"; + const NAME: &'static ::core::primitive::str = "y"; } } pub struct tastyCakes; impl cynic::schema::Field for tastyCakes { type Type = super::super::Dessert; - const NAME: &'static str = "tastyCakes"; + const NAME: &'static ::core::primitive::str = "tastyCakes"; } impl cynic::schema::HasField<tastyCakes> for super::super::TestStruct { type Type = super::super::Dessert; @@ -126,18 +127,18 @@ pub mod __fields { pub struct first; impl cynic::schema::HasArgument<first> for super::tastyCakes { type ArgumentType = super::super::super::Dessert; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct second; impl cynic::schema::HasArgument<second> for super::tastyCakes { type ArgumentType = Option<super::super::super::Dessert>; - const NAME: &'static str = "second"; + const NAME: &'static ::core::primitive::str = "second"; } } pub struct fieldWithInput; impl cynic::schema::Field for fieldWithInput { type Type = super::super::Dessert; - const NAME: &'static str = "fieldWithInput"; + const NAME: &'static ::core::primitive::str = "fieldWithInput"; } impl cynic::schema::HasField<fieldWithInput> for super::super::TestStruct { type Type = super::super::Dessert; @@ -146,13 +147,13 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::fieldWithInput { type ArgumentType = super::super::super::AnInputType; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } pub struct nested; impl cynic::schema::Field for nested { type Type = super::super::Nested; - const NAME: &'static str = "nested"; + const NAME: &'static ::core::primitive::str = "nested"; } impl cynic::schema::HasField<nested> for super::super::TestStruct { type Type = super::super::Nested; @@ -160,7 +161,7 @@ pub mod __fields { pub struct optNested; impl cynic::schema::Field for optNested { type Type = Option<super::super::Nested>; - const NAME: &'static str = "optNested"; + const NAME: &'static ::core::primitive::str = "optNested"; } impl cynic::schema::HasField<optNested> for super::super::TestStruct { type Type = Option<super::super::Nested>; @@ -168,7 +169,7 @@ pub mod __fields { pub struct dessert; impl cynic::schema::Field for dessert { type Type = Option<super::super::Dessert>; - const NAME: &'static str = "dessert"; + const NAME: &'static ::core::primitive::str = "dessert"; } impl cynic::schema::HasField<dessert> for super::super::TestStruct { type Type = Option<super::super::Dessert>; @@ -176,7 +177,7 @@ pub mod __fields { pub struct json; impl cynic::schema::Field for json { type Type = Option<super::super::JSON>; - const NAME: &'static str = "json"; + const NAME: &'static ::core::primitive::str = "json"; } impl cynic::schema::HasField<json> for super::super::TestStruct { type Type = Option<super::super::JSON>; @@ -184,7 +185,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::TestStruct { type Type = super::super::String; @@ -270,4 +271,3 @@ pub mod variable { const TYPE: VariableType = VariableType::Named("ID"); } } - diff --git a/cynic-codegen/tests/snapshots/use_schema__starwars.schema.graphql.snap b/cynic-codegen/tests/snapshots/use_schema__starwars.schema.graphql.snap index 152416008..f983e737f 100644 --- a/cynic-codegen/tests/snapshots/use_schema__starwars.schema.graphql.snap +++ b/cynic-codegen/tests/snapshots/use_schema__starwars.schema.graphql.snap @@ -1,6 +1,7 @@ --- source: cynic-codegen/tests/use-schema.rs expression: "format_code(format!(\"{}\", tokens))" +snapshot_kind: text --- impl cynic::schema::QueryRoot for Root {} pub struct Film; @@ -64,163 +65,163 @@ impl cynic::schema::HasSubtype<Species> for Node {} impl cynic::schema::HasSubtype<Starship> for Node {} impl cynic::schema::HasSubtype<Vehicle> for Node {} impl cynic::schema::NamedType for Film { - const NAME: &'static str = "Film"; + const NAME: &'static ::core::primitive::str = "Film"; } impl cynic::schema::NamedType for FilmCharactersConnection { - const NAME: &'static str = "FilmCharactersConnection"; + const NAME: &'static ::core::primitive::str = "FilmCharactersConnection"; } impl cynic::schema::NamedType for FilmCharactersEdge { - const NAME: &'static str = "FilmCharactersEdge"; + const NAME: &'static ::core::primitive::str = "FilmCharactersEdge"; } impl cynic::schema::NamedType for FilmPlanetsConnection { - const NAME: &'static str = "FilmPlanetsConnection"; + const NAME: &'static ::core::primitive::str = "FilmPlanetsConnection"; } impl cynic::schema::NamedType for FilmPlanetsEdge { - const NAME: &'static str = "FilmPlanetsEdge"; + const NAME: &'static ::core::primitive::str = "FilmPlanetsEdge"; } impl cynic::schema::NamedType for FilmSpeciesConnection { - const NAME: &'static str = "FilmSpeciesConnection"; + const NAME: &'static ::core::primitive::str = "FilmSpeciesConnection"; } impl cynic::schema::NamedType for FilmSpeciesEdge { - const NAME: &'static str = "FilmSpeciesEdge"; + const NAME: &'static ::core::primitive::str = "FilmSpeciesEdge"; } impl cynic::schema::NamedType for FilmStarshipsConnection { - const NAME: &'static str = "FilmStarshipsConnection"; + const NAME: &'static ::core::primitive::str = "FilmStarshipsConnection"; } impl cynic::schema::NamedType for FilmStarshipsEdge { - const NAME: &'static str = "FilmStarshipsEdge"; + const NAME: &'static ::core::primitive::str = "FilmStarshipsEdge"; } impl cynic::schema::NamedType for FilmVehiclesConnection { - const NAME: &'static str = "FilmVehiclesConnection"; + const NAME: &'static ::core::primitive::str = "FilmVehiclesConnection"; } impl cynic::schema::NamedType for FilmVehiclesEdge { - const NAME: &'static str = "FilmVehiclesEdge"; + const NAME: &'static ::core::primitive::str = "FilmVehiclesEdge"; } impl cynic::schema::NamedType for FilmsConnection { - const NAME: &'static str = "FilmsConnection"; + const NAME: &'static ::core::primitive::str = "FilmsConnection"; } impl cynic::schema::NamedType for FilmsEdge { - const NAME: &'static str = "FilmsEdge"; + const NAME: &'static ::core::primitive::str = "FilmsEdge"; } impl cynic::schema::NamedType for Node { - const NAME: &'static str = "Node"; + const NAME: &'static ::core::primitive::str = "Node"; } impl cynic::schema::NamedType for PageInfo { - const NAME: &'static str = "PageInfo"; + const NAME: &'static ::core::primitive::str = "PageInfo"; } impl cynic::schema::NamedType for PeopleConnection { - const NAME: &'static str = "PeopleConnection"; + const NAME: &'static ::core::primitive::str = "PeopleConnection"; } impl cynic::schema::NamedType for PeopleEdge { - const NAME: &'static str = "PeopleEdge"; + const NAME: &'static ::core::primitive::str = "PeopleEdge"; } impl cynic::schema::NamedType for Person { - const NAME: &'static str = "Person"; + const NAME: &'static ::core::primitive::str = "Person"; } impl cynic::schema::NamedType for PersonFilmsConnection { - const NAME: &'static str = "PersonFilmsConnection"; + const NAME: &'static ::core::primitive::str = "PersonFilmsConnection"; } impl cynic::schema::NamedType for PersonFilmsEdge { - const NAME: &'static str = "PersonFilmsEdge"; + const NAME: &'static ::core::primitive::str = "PersonFilmsEdge"; } impl cynic::schema::NamedType for PersonStarshipsConnection { - const NAME: &'static str = "PersonStarshipsConnection"; + const NAME: &'static ::core::primitive::str = "PersonStarshipsConnection"; } impl cynic::schema::NamedType for PersonStarshipsEdge { - const NAME: &'static str = "PersonStarshipsEdge"; + const NAME: &'static ::core::primitive::str = "PersonStarshipsEdge"; } impl cynic::schema::NamedType for PersonVehiclesConnection { - const NAME: &'static str = "PersonVehiclesConnection"; + const NAME: &'static ::core::primitive::str = "PersonVehiclesConnection"; } impl cynic::schema::NamedType for PersonVehiclesEdge { - const NAME: &'static str = "PersonVehiclesEdge"; + const NAME: &'static ::core::primitive::str = "PersonVehiclesEdge"; } impl cynic::schema::NamedType for Planet { - const NAME: &'static str = "Planet"; + const NAME: &'static ::core::primitive::str = "Planet"; } impl cynic::schema::NamedType for PlanetFilmsConnection { - const NAME: &'static str = "PlanetFilmsConnection"; + const NAME: &'static ::core::primitive::str = "PlanetFilmsConnection"; } impl cynic::schema::NamedType for PlanetFilmsEdge { - const NAME: &'static str = "PlanetFilmsEdge"; + const NAME: &'static ::core::primitive::str = "PlanetFilmsEdge"; } impl cynic::schema::NamedType for PlanetResidentsConnection { - const NAME: &'static str = "PlanetResidentsConnection"; + const NAME: &'static ::core::primitive::str = "PlanetResidentsConnection"; } impl cynic::schema::NamedType for PlanetResidentsEdge { - const NAME: &'static str = "PlanetResidentsEdge"; + const NAME: &'static ::core::primitive::str = "PlanetResidentsEdge"; } impl cynic::schema::NamedType for PlanetsConnection { - const NAME: &'static str = "PlanetsConnection"; + const NAME: &'static ::core::primitive::str = "PlanetsConnection"; } impl cynic::schema::NamedType for PlanetsEdge { - const NAME: &'static str = "PlanetsEdge"; + const NAME: &'static ::core::primitive::str = "PlanetsEdge"; } impl cynic::schema::NamedType for Root { - const NAME: &'static str = "Root"; + const NAME: &'static ::core::primitive::str = "Root"; } impl cynic::schema::NamedType for Species { - const NAME: &'static str = "Species"; + const NAME: &'static ::core::primitive::str = "Species"; } impl cynic::schema::NamedType for SpeciesConnection { - const NAME: &'static str = "SpeciesConnection"; + const NAME: &'static ::core::primitive::str = "SpeciesConnection"; } impl cynic::schema::NamedType for SpeciesEdge { - const NAME: &'static str = "SpeciesEdge"; + const NAME: &'static ::core::primitive::str = "SpeciesEdge"; } impl cynic::schema::NamedType for SpeciesFilmsConnection { - const NAME: &'static str = "SpeciesFilmsConnection"; + const NAME: &'static ::core::primitive::str = "SpeciesFilmsConnection"; } impl cynic::schema::NamedType for SpeciesFilmsEdge { - const NAME: &'static str = "SpeciesFilmsEdge"; + const NAME: &'static ::core::primitive::str = "SpeciesFilmsEdge"; } impl cynic::schema::NamedType for SpeciesPeopleConnection { - const NAME: &'static str = "SpeciesPeopleConnection"; + const NAME: &'static ::core::primitive::str = "SpeciesPeopleConnection"; } impl cynic::schema::NamedType for SpeciesPeopleEdge { - const NAME: &'static str = "SpeciesPeopleEdge"; + const NAME: &'static ::core::primitive::str = "SpeciesPeopleEdge"; } impl cynic::schema::NamedType for Starship { - const NAME: &'static str = "Starship"; + const NAME: &'static ::core::primitive::str = "Starship"; } impl cynic::schema::NamedType for StarshipFilmsConnection { - const NAME: &'static str = "StarshipFilmsConnection"; + const NAME: &'static ::core::primitive::str = "StarshipFilmsConnection"; } impl cynic::schema::NamedType for StarshipFilmsEdge { - const NAME: &'static str = "StarshipFilmsEdge"; + const NAME: &'static ::core::primitive::str = "StarshipFilmsEdge"; } impl cynic::schema::NamedType for StarshipPilotsConnection { - const NAME: &'static str = "StarshipPilotsConnection"; + const NAME: &'static ::core::primitive::str = "StarshipPilotsConnection"; } impl cynic::schema::NamedType for StarshipPilotsEdge { - const NAME: &'static str = "StarshipPilotsEdge"; + const NAME: &'static ::core::primitive::str = "StarshipPilotsEdge"; } impl cynic::schema::NamedType for StarshipsConnection { - const NAME: &'static str = "StarshipsConnection"; + const NAME: &'static ::core::primitive::str = "StarshipsConnection"; } impl cynic::schema::NamedType for StarshipsEdge { - const NAME: &'static str = "StarshipsEdge"; + const NAME: &'static ::core::primitive::str = "StarshipsEdge"; } impl cynic::schema::NamedType for Vehicle { - const NAME: &'static str = "Vehicle"; + const NAME: &'static ::core::primitive::str = "Vehicle"; } impl cynic::schema::NamedType for VehicleFilmsConnection { - const NAME: &'static str = "VehicleFilmsConnection"; + const NAME: &'static ::core::primitive::str = "VehicleFilmsConnection"; } impl cynic::schema::NamedType for VehicleFilmsEdge { - const NAME: &'static str = "VehicleFilmsEdge"; + const NAME: &'static ::core::primitive::str = "VehicleFilmsEdge"; } impl cynic::schema::NamedType for VehiclePilotsConnection { - const NAME: &'static str = "VehiclePilotsConnection"; + const NAME: &'static ::core::primitive::str = "VehiclePilotsConnection"; } impl cynic::schema::NamedType for VehiclePilotsEdge { - const NAME: &'static str = "VehiclePilotsEdge"; + const NAME: &'static ::core::primitive::str = "VehiclePilotsEdge"; } impl cynic::schema::NamedType for VehiclesConnection { - const NAME: &'static str = "VehiclesConnection"; + const NAME: &'static ::core::primitive::str = "VehiclesConnection"; } impl cynic::schema::NamedType for VehiclesEdge { - const NAME: &'static str = "VehiclesEdge"; + const NAME: &'static ::core::primitive::str = "VehiclesEdge"; } #[allow(non_snake_case, non_camel_case_types)] pub mod __fields { @@ -228,7 +229,7 @@ pub mod __fields { pub struct title; impl cynic::schema::Field for title { type Type = Option<super::super::String>; - const NAME: &'static str = "title"; + const NAME: &'static ::core::primitive::str = "title"; } impl cynic::schema::HasField<title> for super::super::Film { type Type = Option<super::super::String>; @@ -236,7 +237,7 @@ pub mod __fields { pub struct episodeID; impl cynic::schema::Field for episodeID { type Type = Option<super::super::Int>; - const NAME: &'static str = "episodeID"; + const NAME: &'static ::core::primitive::str = "episodeID"; } impl cynic::schema::HasField<episodeID> for super::super::Film { type Type = Option<super::super::Int>; @@ -244,7 +245,7 @@ pub mod __fields { pub struct openingCrawl; impl cynic::schema::Field for openingCrawl { type Type = Option<super::super::String>; - const NAME: &'static str = "openingCrawl"; + const NAME: &'static ::core::primitive::str = "openingCrawl"; } impl cynic::schema::HasField<openingCrawl> for super::super::Film { type Type = Option<super::super::String>; @@ -252,7 +253,7 @@ pub mod __fields { pub struct director; impl cynic::schema::Field for director { type Type = Option<super::super::String>; - const NAME: &'static str = "director"; + const NAME: &'static ::core::primitive::str = "director"; } impl cynic::schema::HasField<director> for super::super::Film { type Type = Option<super::super::String>; @@ -260,7 +261,7 @@ pub mod __fields { pub struct producers; impl cynic::schema::Field for producers { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "producers"; + const NAME: &'static ::core::primitive::str = "producers"; } impl cynic::schema::HasField<producers> for super::super::Film { type Type = Option<Vec<Option<super::super::String>>>; @@ -268,7 +269,7 @@ pub mod __fields { pub struct releaseDate; impl cynic::schema::Field for releaseDate { type Type = Option<super::super::String>; - const NAME: &'static str = "releaseDate"; + const NAME: &'static ::core::primitive::str = "releaseDate"; } impl cynic::schema::HasField<releaseDate> for super::super::Film { type Type = Option<super::super::String>; @@ -276,7 +277,7 @@ pub mod __fields { pub struct speciesConnection; impl cynic::schema::Field for speciesConnection { type Type = Option<super::super::FilmSpeciesConnection>; - const NAME: &'static str = "speciesConnection"; + const NAME: &'static ::core::primitive::str = "speciesConnection"; } impl cynic::schema::HasField<speciesConnection> for super::super::Film { type Type = Option<super::super::FilmSpeciesConnection>; @@ -285,28 +286,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::speciesConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::speciesConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::speciesConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::speciesConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct starshipConnection; impl cynic::schema::Field for starshipConnection { type Type = Option<super::super::FilmStarshipsConnection>; - const NAME: &'static str = "starshipConnection"; + const NAME: &'static ::core::primitive::str = "starshipConnection"; } impl cynic::schema::HasField<starshipConnection> for super::super::Film { type Type = Option<super::super::FilmStarshipsConnection>; @@ -315,28 +316,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::starshipConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::starshipConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::starshipConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::starshipConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct vehicleConnection; impl cynic::schema::Field for vehicleConnection { type Type = Option<super::super::FilmVehiclesConnection>; - const NAME: &'static str = "vehicleConnection"; + const NAME: &'static ::core::primitive::str = "vehicleConnection"; } impl cynic::schema::HasField<vehicleConnection> for super::super::Film { type Type = Option<super::super::FilmVehiclesConnection>; @@ -345,28 +346,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::vehicleConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::vehicleConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::vehicleConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::vehicleConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct characterConnection; impl cynic::schema::Field for characterConnection { type Type = Option<super::super::FilmCharactersConnection>; - const NAME: &'static str = "characterConnection"; + const NAME: &'static ::core::primitive::str = "characterConnection"; } impl cynic::schema::HasField<characterConnection> for super::super::Film { type Type = Option<super::super::FilmCharactersConnection>; @@ -375,28 +376,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::characterConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::characterConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::characterConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::characterConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct planetConnection; impl cynic::schema::Field for planetConnection { type Type = Option<super::super::FilmPlanetsConnection>; - const NAME: &'static str = "planetConnection"; + const NAME: &'static ::core::primitive::str = "planetConnection"; } impl cynic::schema::HasField<planetConnection> for super::super::Film { type Type = Option<super::super::FilmPlanetsConnection>; @@ -405,28 +406,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::planetConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::planetConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::planetConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::planetConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct created; impl cynic::schema::Field for created { type Type = Option<super::super::String>; - const NAME: &'static str = "created"; + const NAME: &'static ::core::primitive::str = "created"; } impl cynic::schema::HasField<created> for super::super::Film { type Type = Option<super::super::String>; @@ -434,7 +435,7 @@ pub mod __fields { pub struct edited; impl cynic::schema::Field for edited { type Type = Option<super::super::String>; - const NAME: &'static str = "edited"; + const NAME: &'static ::core::primitive::str = "edited"; } impl cynic::schema::HasField<edited> for super::super::Film { type Type = Option<super::super::String>; @@ -442,7 +443,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Film { type Type = super::super::ID; @@ -450,7 +451,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Film { type Type = super::super::String; @@ -460,7 +461,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::FilmCharactersConnection { type Type = super::super::PageInfo; @@ -468,7 +469,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::FilmCharactersEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::FilmCharactersConnection { type Type = Option<Vec<Option<super::super::FilmCharactersEdge>>>; @@ -476,7 +477,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::FilmCharactersConnection { type Type = Option<super::super::Int>; @@ -484,7 +485,7 @@ pub mod __fields { pub struct characters; impl cynic::schema::Field for characters { type Type = Option<Vec<Option<super::super::Person>>>; - const NAME: &'static str = "characters"; + const NAME: &'static ::core::primitive::str = "characters"; } impl cynic::schema::HasField<characters> for super::super::FilmCharactersConnection { type Type = Option<Vec<Option<super::super::Person>>>; @@ -492,7 +493,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmCharactersConnection { type Type = super::super::String; @@ -502,7 +503,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Person>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::FilmCharactersEdge { type Type = Option<super::super::Person>; @@ -510,7 +511,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::FilmCharactersEdge { type Type = super::super::String; @@ -518,7 +519,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmCharactersEdge { type Type = super::super::String; @@ -528,7 +529,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::FilmPlanetsConnection { type Type = super::super::PageInfo; @@ -536,7 +537,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::FilmPlanetsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::FilmPlanetsConnection { type Type = Option<Vec<Option<super::super::FilmPlanetsEdge>>>; @@ -544,7 +545,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::FilmPlanetsConnection { type Type = Option<super::super::Int>; @@ -552,7 +553,7 @@ pub mod __fields { pub struct planets; impl cynic::schema::Field for planets { type Type = Option<Vec<Option<super::super::Planet>>>; - const NAME: &'static str = "planets"; + const NAME: &'static ::core::primitive::str = "planets"; } impl cynic::schema::HasField<planets> for super::super::FilmPlanetsConnection { type Type = Option<Vec<Option<super::super::Planet>>>; @@ -560,7 +561,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmPlanetsConnection { type Type = super::super::String; @@ -570,7 +571,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Planet>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::FilmPlanetsEdge { type Type = Option<super::super::Planet>; @@ -578,7 +579,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::FilmPlanetsEdge { type Type = super::super::String; @@ -586,7 +587,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmPlanetsEdge { type Type = super::super::String; @@ -596,7 +597,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::FilmSpeciesConnection { type Type = super::super::PageInfo; @@ -604,7 +605,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::FilmSpeciesEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::FilmSpeciesConnection { type Type = Option<Vec<Option<super::super::FilmSpeciesEdge>>>; @@ -612,7 +613,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::FilmSpeciesConnection { type Type = Option<super::super::Int>; @@ -620,7 +621,7 @@ pub mod __fields { pub struct species; impl cynic::schema::Field for species { type Type = Option<Vec<Option<super::super::Species>>>; - const NAME: &'static str = "species"; + const NAME: &'static ::core::primitive::str = "species"; } impl cynic::schema::HasField<species> for super::super::FilmSpeciesConnection { type Type = Option<Vec<Option<super::super::Species>>>; @@ -628,7 +629,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmSpeciesConnection { type Type = super::super::String; @@ -638,7 +639,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Species>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::FilmSpeciesEdge { type Type = Option<super::super::Species>; @@ -646,7 +647,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::FilmSpeciesEdge { type Type = super::super::String; @@ -654,7 +655,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmSpeciesEdge { type Type = super::super::String; @@ -664,7 +665,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::FilmStarshipsConnection { type Type = super::super::PageInfo; @@ -672,7 +673,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::FilmStarshipsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::FilmStarshipsConnection { type Type = Option<Vec<Option<super::super::FilmStarshipsEdge>>>; @@ -680,7 +681,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::FilmStarshipsConnection { type Type = Option<super::super::Int>; @@ -688,7 +689,7 @@ pub mod __fields { pub struct starships; impl cynic::schema::Field for starships { type Type = Option<Vec<Option<super::super::Starship>>>; - const NAME: &'static str = "starships"; + const NAME: &'static ::core::primitive::str = "starships"; } impl cynic::schema::HasField<starships> for super::super::FilmStarshipsConnection { type Type = Option<Vec<Option<super::super::Starship>>>; @@ -696,7 +697,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmStarshipsConnection { type Type = super::super::String; @@ -706,7 +707,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Starship>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::FilmStarshipsEdge { type Type = Option<super::super::Starship>; @@ -714,7 +715,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::FilmStarshipsEdge { type Type = super::super::String; @@ -722,7 +723,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmStarshipsEdge { type Type = super::super::String; @@ -732,7 +733,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::FilmVehiclesConnection { type Type = super::super::PageInfo; @@ -740,7 +741,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::FilmVehiclesEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::FilmVehiclesConnection { type Type = Option<Vec<Option<super::super::FilmVehiclesEdge>>>; @@ -748,7 +749,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::FilmVehiclesConnection { type Type = Option<super::super::Int>; @@ -756,7 +757,7 @@ pub mod __fields { pub struct vehicles; impl cynic::schema::Field for vehicles { type Type = Option<Vec<Option<super::super::Vehicle>>>; - const NAME: &'static str = "vehicles"; + const NAME: &'static ::core::primitive::str = "vehicles"; } impl cynic::schema::HasField<vehicles> for super::super::FilmVehiclesConnection { type Type = Option<Vec<Option<super::super::Vehicle>>>; @@ -764,7 +765,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmVehiclesConnection { type Type = super::super::String; @@ -774,7 +775,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Vehicle>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::FilmVehiclesEdge { type Type = Option<super::super::Vehicle>; @@ -782,7 +783,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::FilmVehiclesEdge { type Type = super::super::String; @@ -790,7 +791,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmVehiclesEdge { type Type = super::super::String; @@ -800,7 +801,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::FilmsConnection { type Type = super::super::PageInfo; @@ -808,7 +809,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::FilmsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::FilmsConnection { type Type = Option<Vec<Option<super::super::FilmsEdge>>>; @@ -816,7 +817,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::FilmsConnection { type Type = Option<super::super::Int>; @@ -824,7 +825,7 @@ pub mod __fields { pub struct films; impl cynic::schema::Field for films { type Type = Option<Vec<Option<super::super::Film>>>; - const NAME: &'static str = "films"; + const NAME: &'static ::core::primitive::str = "films"; } impl cynic::schema::HasField<films> for super::super::FilmsConnection { type Type = Option<Vec<Option<super::super::Film>>>; @@ -832,7 +833,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmsConnection { type Type = super::super::String; @@ -842,7 +843,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Film>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::FilmsEdge { type Type = Option<super::super::Film>; @@ -850,7 +851,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::FilmsEdge { type Type = super::super::String; @@ -858,7 +859,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FilmsEdge { type Type = super::super::String; @@ -868,7 +869,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Node { type Type = super::super::ID; @@ -876,7 +877,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Node { type Type = super::super::String; @@ -886,7 +887,7 @@ pub mod __fields { pub struct hasNextPage; impl cynic::schema::Field for hasNextPage { type Type = super::super::Boolean; - const NAME: &'static str = "hasNextPage"; + const NAME: &'static ::core::primitive::str = "hasNextPage"; } impl cynic::schema::HasField<hasNextPage> for super::super::PageInfo { type Type = super::super::Boolean; @@ -894,7 +895,7 @@ pub mod __fields { pub struct hasPreviousPage; impl cynic::schema::Field for hasPreviousPage { type Type = super::super::Boolean; - const NAME: &'static str = "hasPreviousPage"; + const NAME: &'static ::core::primitive::str = "hasPreviousPage"; } impl cynic::schema::HasField<hasPreviousPage> for super::super::PageInfo { type Type = super::super::Boolean; @@ -902,7 +903,7 @@ pub mod __fields { pub struct startCursor; impl cynic::schema::Field for startCursor { type Type = Option<super::super::String>; - const NAME: &'static str = "startCursor"; + const NAME: &'static ::core::primitive::str = "startCursor"; } impl cynic::schema::HasField<startCursor> for super::super::PageInfo { type Type = Option<super::super::String>; @@ -910,7 +911,7 @@ pub mod __fields { pub struct endCursor; impl cynic::schema::Field for endCursor { type Type = Option<super::super::String>; - const NAME: &'static str = "endCursor"; + const NAME: &'static ::core::primitive::str = "endCursor"; } impl cynic::schema::HasField<endCursor> for super::super::PageInfo { type Type = Option<super::super::String>; @@ -918,7 +919,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PageInfo { type Type = super::super::String; @@ -928,7 +929,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::PeopleConnection { type Type = super::super::PageInfo; @@ -936,7 +937,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::PeopleEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::PeopleConnection { type Type = Option<Vec<Option<super::super::PeopleEdge>>>; @@ -944,7 +945,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::PeopleConnection { type Type = Option<super::super::Int>; @@ -952,7 +953,7 @@ pub mod __fields { pub struct people; impl cynic::schema::Field for people { type Type = Option<Vec<Option<super::super::Person>>>; - const NAME: &'static str = "people"; + const NAME: &'static ::core::primitive::str = "people"; } impl cynic::schema::HasField<people> for super::super::PeopleConnection { type Type = Option<Vec<Option<super::super::Person>>>; @@ -960,7 +961,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PeopleConnection { type Type = super::super::String; @@ -970,7 +971,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Person>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::PeopleEdge { type Type = Option<super::super::Person>; @@ -978,7 +979,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::PeopleEdge { type Type = super::super::String; @@ -986,7 +987,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PeopleEdge { type Type = super::super::String; @@ -996,7 +997,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Person { type Type = Option<super::super::String>; @@ -1004,7 +1005,7 @@ pub mod __fields { pub struct birthYear; impl cynic::schema::Field for birthYear { type Type = Option<super::super::String>; - const NAME: &'static str = "birthYear"; + const NAME: &'static ::core::primitive::str = "birthYear"; } impl cynic::schema::HasField<birthYear> for super::super::Person { type Type = Option<super::super::String>; @@ -1012,7 +1013,7 @@ pub mod __fields { pub struct eyeColor; impl cynic::schema::Field for eyeColor { type Type = Option<super::super::String>; - const NAME: &'static str = "eyeColor"; + const NAME: &'static ::core::primitive::str = "eyeColor"; } impl cynic::schema::HasField<eyeColor> for super::super::Person { type Type = Option<super::super::String>; @@ -1020,7 +1021,7 @@ pub mod __fields { pub struct gender; impl cynic::schema::Field for gender { type Type = Option<super::super::String>; - const NAME: &'static str = "gender"; + const NAME: &'static ::core::primitive::str = "gender"; } impl cynic::schema::HasField<gender> for super::super::Person { type Type = Option<super::super::String>; @@ -1028,7 +1029,7 @@ pub mod __fields { pub struct hairColor; impl cynic::schema::Field for hairColor { type Type = Option<super::super::String>; - const NAME: &'static str = "hairColor"; + const NAME: &'static ::core::primitive::str = "hairColor"; } impl cynic::schema::HasField<hairColor> for super::super::Person { type Type = Option<super::super::String>; @@ -1036,7 +1037,7 @@ pub mod __fields { pub struct height; impl cynic::schema::Field for height { type Type = Option<super::super::Int>; - const NAME: &'static str = "height"; + const NAME: &'static ::core::primitive::str = "height"; } impl cynic::schema::HasField<height> for super::super::Person { type Type = Option<super::super::Int>; @@ -1044,7 +1045,7 @@ pub mod __fields { pub struct mass; impl cynic::schema::Field for mass { type Type = Option<super::super::Float>; - const NAME: &'static str = "mass"; + const NAME: &'static ::core::primitive::str = "mass"; } impl cynic::schema::HasField<mass> for super::super::Person { type Type = Option<super::super::Float>; @@ -1052,7 +1053,7 @@ pub mod __fields { pub struct skinColor; impl cynic::schema::Field for skinColor { type Type = Option<super::super::String>; - const NAME: &'static str = "skinColor"; + const NAME: &'static ::core::primitive::str = "skinColor"; } impl cynic::schema::HasField<skinColor> for super::super::Person { type Type = Option<super::super::String>; @@ -1060,7 +1061,7 @@ pub mod __fields { pub struct homeworld; impl cynic::schema::Field for homeworld { type Type = Option<super::super::Planet>; - const NAME: &'static str = "homeworld"; + const NAME: &'static ::core::primitive::str = "homeworld"; } impl cynic::schema::HasField<homeworld> for super::super::Person { type Type = Option<super::super::Planet>; @@ -1068,7 +1069,7 @@ pub mod __fields { pub struct filmConnection; impl cynic::schema::Field for filmConnection { type Type = Option<super::super::PersonFilmsConnection>; - const NAME: &'static str = "filmConnection"; + const NAME: &'static ::core::primitive::str = "filmConnection"; } impl cynic::schema::HasField<filmConnection> for super::super::Person { type Type = Option<super::super::PersonFilmsConnection>; @@ -1077,28 +1078,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct species; impl cynic::schema::Field for species { type Type = Option<super::super::Species>; - const NAME: &'static str = "species"; + const NAME: &'static ::core::primitive::str = "species"; } impl cynic::schema::HasField<species> for super::super::Person { type Type = Option<super::super::Species>; @@ -1106,7 +1107,7 @@ pub mod __fields { pub struct starshipConnection; impl cynic::schema::Field for starshipConnection { type Type = Option<super::super::PersonStarshipsConnection>; - const NAME: &'static str = "starshipConnection"; + const NAME: &'static ::core::primitive::str = "starshipConnection"; } impl cynic::schema::HasField<starshipConnection> for super::super::Person { type Type = Option<super::super::PersonStarshipsConnection>; @@ -1115,28 +1116,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::starshipConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::starshipConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::starshipConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::starshipConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct vehicleConnection; impl cynic::schema::Field for vehicleConnection { type Type = Option<super::super::PersonVehiclesConnection>; - const NAME: &'static str = "vehicleConnection"; + const NAME: &'static ::core::primitive::str = "vehicleConnection"; } impl cynic::schema::HasField<vehicleConnection> for super::super::Person { type Type = Option<super::super::PersonVehiclesConnection>; @@ -1145,28 +1146,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::vehicleConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::vehicleConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::vehicleConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::vehicleConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct created; impl cynic::schema::Field for created { type Type = Option<super::super::String>; - const NAME: &'static str = "created"; + const NAME: &'static ::core::primitive::str = "created"; } impl cynic::schema::HasField<created> for super::super::Person { type Type = Option<super::super::String>; @@ -1174,7 +1175,7 @@ pub mod __fields { pub struct edited; impl cynic::schema::Field for edited { type Type = Option<super::super::String>; - const NAME: &'static str = "edited"; + const NAME: &'static ::core::primitive::str = "edited"; } impl cynic::schema::HasField<edited> for super::super::Person { type Type = Option<super::super::String>; @@ -1182,7 +1183,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Person { type Type = super::super::ID; @@ -1190,7 +1191,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Person { type Type = super::super::String; @@ -1200,7 +1201,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::PersonFilmsConnection { type Type = super::super::PageInfo; @@ -1208,7 +1209,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::PersonFilmsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::PersonFilmsConnection { type Type = Option<Vec<Option<super::super::PersonFilmsEdge>>>; @@ -1216,7 +1217,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::PersonFilmsConnection { type Type = Option<super::super::Int>; @@ -1224,7 +1225,7 @@ pub mod __fields { pub struct films; impl cynic::schema::Field for films { type Type = Option<Vec<Option<super::super::Film>>>; - const NAME: &'static str = "films"; + const NAME: &'static ::core::primitive::str = "films"; } impl cynic::schema::HasField<films> for super::super::PersonFilmsConnection { type Type = Option<Vec<Option<super::super::Film>>>; @@ -1232,7 +1233,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PersonFilmsConnection { type Type = super::super::String; @@ -1242,7 +1243,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Film>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::PersonFilmsEdge { type Type = Option<super::super::Film>; @@ -1250,7 +1251,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::PersonFilmsEdge { type Type = super::super::String; @@ -1258,7 +1259,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PersonFilmsEdge { type Type = super::super::String; @@ -1268,7 +1269,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::PersonStarshipsConnection { type Type = super::super::PageInfo; @@ -1276,7 +1277,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::PersonStarshipsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::PersonStarshipsConnection { type Type = Option<Vec<Option<super::super::PersonStarshipsEdge>>>; @@ -1284,7 +1285,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::PersonStarshipsConnection { type Type = Option<super::super::Int>; @@ -1292,7 +1293,7 @@ pub mod __fields { pub struct starships; impl cynic::schema::Field for starships { type Type = Option<Vec<Option<super::super::Starship>>>; - const NAME: &'static str = "starships"; + const NAME: &'static ::core::primitive::str = "starships"; } impl cynic::schema::HasField<starships> for super::super::PersonStarshipsConnection { type Type = Option<Vec<Option<super::super::Starship>>>; @@ -1300,7 +1301,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PersonStarshipsConnection { type Type = super::super::String; @@ -1310,7 +1311,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Starship>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::PersonStarshipsEdge { type Type = Option<super::super::Starship>; @@ -1318,7 +1319,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::PersonStarshipsEdge { type Type = super::super::String; @@ -1326,7 +1327,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PersonStarshipsEdge { type Type = super::super::String; @@ -1336,7 +1337,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::PersonVehiclesConnection { type Type = super::super::PageInfo; @@ -1344,7 +1345,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::PersonVehiclesEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::PersonVehiclesConnection { type Type = Option<Vec<Option<super::super::PersonVehiclesEdge>>>; @@ -1352,7 +1353,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::PersonVehiclesConnection { type Type = Option<super::super::Int>; @@ -1360,7 +1361,7 @@ pub mod __fields { pub struct vehicles; impl cynic::schema::Field for vehicles { type Type = Option<Vec<Option<super::super::Vehicle>>>; - const NAME: &'static str = "vehicles"; + const NAME: &'static ::core::primitive::str = "vehicles"; } impl cynic::schema::HasField<vehicles> for super::super::PersonVehiclesConnection { type Type = Option<Vec<Option<super::super::Vehicle>>>; @@ -1368,7 +1369,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PersonVehiclesConnection { type Type = super::super::String; @@ -1378,7 +1379,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Vehicle>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::PersonVehiclesEdge { type Type = Option<super::super::Vehicle>; @@ -1386,7 +1387,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::PersonVehiclesEdge { type Type = super::super::String; @@ -1394,7 +1395,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PersonVehiclesEdge { type Type = super::super::String; @@ -1404,7 +1405,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Planet { type Type = Option<super::super::String>; @@ -1412,7 +1413,7 @@ pub mod __fields { pub struct diameter; impl cynic::schema::Field for diameter { type Type = Option<super::super::Int>; - const NAME: &'static str = "diameter"; + const NAME: &'static ::core::primitive::str = "diameter"; } impl cynic::schema::HasField<diameter> for super::super::Planet { type Type = Option<super::super::Int>; @@ -1420,7 +1421,7 @@ pub mod __fields { pub struct rotationPeriod; impl cynic::schema::Field for rotationPeriod { type Type = Option<super::super::Int>; - const NAME: &'static str = "rotationPeriod"; + const NAME: &'static ::core::primitive::str = "rotationPeriod"; } impl cynic::schema::HasField<rotationPeriod> for super::super::Planet { type Type = Option<super::super::Int>; @@ -1428,7 +1429,7 @@ pub mod __fields { pub struct orbitalPeriod; impl cynic::schema::Field for orbitalPeriod { type Type = Option<super::super::Int>; - const NAME: &'static str = "orbitalPeriod"; + const NAME: &'static ::core::primitive::str = "orbitalPeriod"; } impl cynic::schema::HasField<orbitalPeriod> for super::super::Planet { type Type = Option<super::super::Int>; @@ -1436,7 +1437,7 @@ pub mod __fields { pub struct gravity; impl cynic::schema::Field for gravity { type Type = Option<super::super::String>; - const NAME: &'static str = "gravity"; + const NAME: &'static ::core::primitive::str = "gravity"; } impl cynic::schema::HasField<gravity> for super::super::Planet { type Type = Option<super::super::String>; @@ -1444,7 +1445,7 @@ pub mod __fields { pub struct population; impl cynic::schema::Field for population { type Type = Option<super::super::Float>; - const NAME: &'static str = "population"; + const NAME: &'static ::core::primitive::str = "population"; } impl cynic::schema::HasField<population> for super::super::Planet { type Type = Option<super::super::Float>; @@ -1452,7 +1453,7 @@ pub mod __fields { pub struct climates; impl cynic::schema::Field for climates { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "climates"; + const NAME: &'static ::core::primitive::str = "climates"; } impl cynic::schema::HasField<climates> for super::super::Planet { type Type = Option<Vec<Option<super::super::String>>>; @@ -1460,7 +1461,7 @@ pub mod __fields { pub struct terrains; impl cynic::schema::Field for terrains { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "terrains"; + const NAME: &'static ::core::primitive::str = "terrains"; } impl cynic::schema::HasField<terrains> for super::super::Planet { type Type = Option<Vec<Option<super::super::String>>>; @@ -1468,7 +1469,7 @@ pub mod __fields { pub struct surfaceWater; impl cynic::schema::Field for surfaceWater { type Type = Option<super::super::Float>; - const NAME: &'static str = "surfaceWater"; + const NAME: &'static ::core::primitive::str = "surfaceWater"; } impl cynic::schema::HasField<surfaceWater> for super::super::Planet { type Type = Option<super::super::Float>; @@ -1476,7 +1477,7 @@ pub mod __fields { pub struct residentConnection; impl cynic::schema::Field for residentConnection { type Type = Option<super::super::PlanetResidentsConnection>; - const NAME: &'static str = "residentConnection"; + const NAME: &'static ::core::primitive::str = "residentConnection"; } impl cynic::schema::HasField<residentConnection> for super::super::Planet { type Type = Option<super::super::PlanetResidentsConnection>; @@ -1485,28 +1486,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::residentConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::residentConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::residentConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::residentConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct filmConnection; impl cynic::schema::Field for filmConnection { type Type = Option<super::super::PlanetFilmsConnection>; - const NAME: &'static str = "filmConnection"; + const NAME: &'static ::core::primitive::str = "filmConnection"; } impl cynic::schema::HasField<filmConnection> for super::super::Planet { type Type = Option<super::super::PlanetFilmsConnection>; @@ -1515,28 +1516,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct created; impl cynic::schema::Field for created { type Type = Option<super::super::String>; - const NAME: &'static str = "created"; + const NAME: &'static ::core::primitive::str = "created"; } impl cynic::schema::HasField<created> for super::super::Planet { type Type = Option<super::super::String>; @@ -1544,7 +1545,7 @@ pub mod __fields { pub struct edited; impl cynic::schema::Field for edited { type Type = Option<super::super::String>; - const NAME: &'static str = "edited"; + const NAME: &'static ::core::primitive::str = "edited"; } impl cynic::schema::HasField<edited> for super::super::Planet { type Type = Option<super::super::String>; @@ -1552,7 +1553,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Planet { type Type = super::super::ID; @@ -1560,7 +1561,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Planet { type Type = super::super::String; @@ -1570,7 +1571,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::PlanetFilmsConnection { type Type = super::super::PageInfo; @@ -1578,7 +1579,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::PlanetFilmsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::PlanetFilmsConnection { type Type = Option<Vec<Option<super::super::PlanetFilmsEdge>>>; @@ -1586,7 +1587,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::PlanetFilmsConnection { type Type = Option<super::super::Int>; @@ -1594,7 +1595,7 @@ pub mod __fields { pub struct films; impl cynic::schema::Field for films { type Type = Option<Vec<Option<super::super::Film>>>; - const NAME: &'static str = "films"; + const NAME: &'static ::core::primitive::str = "films"; } impl cynic::schema::HasField<films> for super::super::PlanetFilmsConnection { type Type = Option<Vec<Option<super::super::Film>>>; @@ -1602,7 +1603,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PlanetFilmsConnection { type Type = super::super::String; @@ -1612,7 +1613,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Film>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::PlanetFilmsEdge { type Type = Option<super::super::Film>; @@ -1620,7 +1621,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::PlanetFilmsEdge { type Type = super::super::String; @@ -1628,7 +1629,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PlanetFilmsEdge { type Type = super::super::String; @@ -1638,7 +1639,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::PlanetResidentsConnection { type Type = super::super::PageInfo; @@ -1646,7 +1647,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::PlanetResidentsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::PlanetResidentsConnection { type Type = Option<Vec<Option<super::super::PlanetResidentsEdge>>>; @@ -1654,7 +1655,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::PlanetResidentsConnection { type Type = Option<super::super::Int>; @@ -1662,7 +1663,7 @@ pub mod __fields { pub struct residents; impl cynic::schema::Field for residents { type Type = Option<Vec<Option<super::super::Person>>>; - const NAME: &'static str = "residents"; + const NAME: &'static ::core::primitive::str = "residents"; } impl cynic::schema::HasField<residents> for super::super::PlanetResidentsConnection { type Type = Option<Vec<Option<super::super::Person>>>; @@ -1670,7 +1671,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PlanetResidentsConnection { type Type = super::super::String; @@ -1680,7 +1681,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Person>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::PlanetResidentsEdge { type Type = Option<super::super::Person>; @@ -1688,7 +1689,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::PlanetResidentsEdge { type Type = super::super::String; @@ -1696,7 +1697,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PlanetResidentsEdge { type Type = super::super::String; @@ -1706,7 +1707,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::PlanetsConnection { type Type = super::super::PageInfo; @@ -1714,7 +1715,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::PlanetsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::PlanetsConnection { type Type = Option<Vec<Option<super::super::PlanetsEdge>>>; @@ -1722,7 +1723,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::PlanetsConnection { type Type = Option<super::super::Int>; @@ -1730,7 +1731,7 @@ pub mod __fields { pub struct planets; impl cynic::schema::Field for planets { type Type = Option<Vec<Option<super::super::Planet>>>; - const NAME: &'static str = "planets"; + const NAME: &'static ::core::primitive::str = "planets"; } impl cynic::schema::HasField<planets> for super::super::PlanetsConnection { type Type = Option<Vec<Option<super::super::Planet>>>; @@ -1738,7 +1739,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PlanetsConnection { type Type = super::super::String; @@ -1748,7 +1749,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Planet>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::PlanetsEdge { type Type = Option<super::super::Planet>; @@ -1756,7 +1757,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::PlanetsEdge { type Type = super::super::String; @@ -1764,7 +1765,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::PlanetsEdge { type Type = super::super::String; @@ -1774,7 +1775,7 @@ pub mod __fields { pub struct allFilms; impl cynic::schema::Field for allFilms { type Type = Option<super::super::FilmsConnection>; - const NAME: &'static str = "allFilms"; + const NAME: &'static ::core::primitive::str = "allFilms"; } impl cynic::schema::HasField<allFilms> for super::super::Root { type Type = Option<super::super::FilmsConnection>; @@ -1783,28 +1784,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::allFilms { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::allFilms { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::allFilms { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::allFilms { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct film; impl cynic::schema::Field for film { type Type = Option<super::super::Film>; - const NAME: &'static str = "film"; + const NAME: &'static ::core::primitive::str = "film"; } impl cynic::schema::HasField<film> for super::super::Root { type Type = Option<super::super::Film>; @@ -1813,18 +1814,18 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::film { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } pub struct filmID; impl cynic::schema::HasArgument<filmID> for super::film { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "filmID"; + const NAME: &'static ::core::primitive::str = "filmID"; } } pub struct allPeople; impl cynic::schema::Field for allPeople { type Type = Option<super::super::PeopleConnection>; - const NAME: &'static str = "allPeople"; + const NAME: &'static ::core::primitive::str = "allPeople"; } impl cynic::schema::HasField<allPeople> for super::super::Root { type Type = Option<super::super::PeopleConnection>; @@ -1833,28 +1834,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::allPeople { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::allPeople { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::allPeople { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::allPeople { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct person; impl cynic::schema::Field for person { type Type = Option<super::super::Person>; - const NAME: &'static str = "person"; + const NAME: &'static ::core::primitive::str = "person"; } impl cynic::schema::HasField<person> for super::super::Root { type Type = Option<super::super::Person>; @@ -1863,18 +1864,18 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::person { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } pub struct personID; impl cynic::schema::HasArgument<personID> for super::person { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "personID"; + const NAME: &'static ::core::primitive::str = "personID"; } } pub struct allPlanets; impl cynic::schema::Field for allPlanets { type Type = Option<super::super::PlanetsConnection>; - const NAME: &'static str = "allPlanets"; + const NAME: &'static ::core::primitive::str = "allPlanets"; } impl cynic::schema::HasField<allPlanets> for super::super::Root { type Type = Option<super::super::PlanetsConnection>; @@ -1883,28 +1884,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::allPlanets { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::allPlanets { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::allPlanets { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::allPlanets { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct planet; impl cynic::schema::Field for planet { type Type = Option<super::super::Planet>; - const NAME: &'static str = "planet"; + const NAME: &'static ::core::primitive::str = "planet"; } impl cynic::schema::HasField<planet> for super::super::Root { type Type = Option<super::super::Planet>; @@ -1913,18 +1914,18 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::planet { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } pub struct planetID; impl cynic::schema::HasArgument<planetID> for super::planet { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "planetID"; + const NAME: &'static ::core::primitive::str = "planetID"; } } pub struct allSpecies; impl cynic::schema::Field for allSpecies { type Type = Option<super::super::SpeciesConnection>; - const NAME: &'static str = "allSpecies"; + const NAME: &'static ::core::primitive::str = "allSpecies"; } impl cynic::schema::HasField<allSpecies> for super::super::Root { type Type = Option<super::super::SpeciesConnection>; @@ -1933,28 +1934,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::allSpecies { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::allSpecies { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::allSpecies { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::allSpecies { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct species; impl cynic::schema::Field for species { type Type = Option<super::super::Species>; - const NAME: &'static str = "species"; + const NAME: &'static ::core::primitive::str = "species"; } impl cynic::schema::HasField<species> for super::super::Root { type Type = Option<super::super::Species>; @@ -1963,18 +1964,18 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::species { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } pub struct speciesID; impl cynic::schema::HasArgument<speciesID> for super::species { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "speciesID"; + const NAME: &'static ::core::primitive::str = "speciesID"; } } pub struct allStarships; impl cynic::schema::Field for allStarships { type Type = Option<super::super::StarshipsConnection>; - const NAME: &'static str = "allStarships"; + const NAME: &'static ::core::primitive::str = "allStarships"; } impl cynic::schema::HasField<allStarships> for super::super::Root { type Type = Option<super::super::StarshipsConnection>; @@ -1983,28 +1984,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::allStarships { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::allStarships { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::allStarships { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::allStarships { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct starship; impl cynic::schema::Field for starship { type Type = Option<super::super::Starship>; - const NAME: &'static str = "starship"; + const NAME: &'static ::core::primitive::str = "starship"; } impl cynic::schema::HasField<starship> for super::super::Root { type Type = Option<super::super::Starship>; @@ -2013,18 +2014,18 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::starship { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } pub struct starshipID; impl cynic::schema::HasArgument<starshipID> for super::starship { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "starshipID"; + const NAME: &'static ::core::primitive::str = "starshipID"; } } pub struct allVehicles; impl cynic::schema::Field for allVehicles { type Type = Option<super::super::VehiclesConnection>; - const NAME: &'static str = "allVehicles"; + const NAME: &'static ::core::primitive::str = "allVehicles"; } impl cynic::schema::HasField<allVehicles> for super::super::Root { type Type = Option<super::super::VehiclesConnection>; @@ -2033,28 +2034,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::allVehicles { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::allVehicles { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::allVehicles { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::allVehicles { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct vehicle; impl cynic::schema::Field for vehicle { type Type = Option<super::super::Vehicle>; - const NAME: &'static str = "vehicle"; + const NAME: &'static ::core::primitive::str = "vehicle"; } impl cynic::schema::HasField<vehicle> for super::super::Root { type Type = Option<super::super::Vehicle>; @@ -2063,18 +2064,18 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::vehicle { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } pub struct vehicleID; impl cynic::schema::HasArgument<vehicleID> for super::vehicle { type ArgumentType = Option<super::super::super::ID>; - const NAME: &'static str = "vehicleID"; + const NAME: &'static ::core::primitive::str = "vehicleID"; } } pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Node>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::Root { type Type = Option<super::super::Node>; @@ -2083,13 +2084,13 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::node { type ArgumentType = super::super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } } pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Root { type Type = super::super::String; @@ -2099,7 +2100,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Species { type Type = Option<super::super::String>; @@ -2107,7 +2108,7 @@ pub mod __fields { pub struct classification; impl cynic::schema::Field for classification { type Type = Option<super::super::String>; - const NAME: &'static str = "classification"; + const NAME: &'static ::core::primitive::str = "classification"; } impl cynic::schema::HasField<classification> for super::super::Species { type Type = Option<super::super::String>; @@ -2115,7 +2116,7 @@ pub mod __fields { pub struct designation; impl cynic::schema::Field for designation { type Type = Option<super::super::String>; - const NAME: &'static str = "designation"; + const NAME: &'static ::core::primitive::str = "designation"; } impl cynic::schema::HasField<designation> for super::super::Species { type Type = Option<super::super::String>; @@ -2123,7 +2124,7 @@ pub mod __fields { pub struct averageHeight; impl cynic::schema::Field for averageHeight { type Type = Option<super::super::Float>; - const NAME: &'static str = "averageHeight"; + const NAME: &'static ::core::primitive::str = "averageHeight"; } impl cynic::schema::HasField<averageHeight> for super::super::Species { type Type = Option<super::super::Float>; @@ -2131,7 +2132,7 @@ pub mod __fields { pub struct averageLifespan; impl cynic::schema::Field for averageLifespan { type Type = Option<super::super::Int>; - const NAME: &'static str = "averageLifespan"; + const NAME: &'static ::core::primitive::str = "averageLifespan"; } impl cynic::schema::HasField<averageLifespan> for super::super::Species { type Type = Option<super::super::Int>; @@ -2139,7 +2140,7 @@ pub mod __fields { pub struct eyeColors; impl cynic::schema::Field for eyeColors { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "eyeColors"; + const NAME: &'static ::core::primitive::str = "eyeColors"; } impl cynic::schema::HasField<eyeColors> for super::super::Species { type Type = Option<Vec<Option<super::super::String>>>; @@ -2147,7 +2148,7 @@ pub mod __fields { pub struct hairColors; impl cynic::schema::Field for hairColors { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "hairColors"; + const NAME: &'static ::core::primitive::str = "hairColors"; } impl cynic::schema::HasField<hairColors> for super::super::Species { type Type = Option<Vec<Option<super::super::String>>>; @@ -2155,7 +2156,7 @@ pub mod __fields { pub struct skinColors; impl cynic::schema::Field for skinColors { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "skinColors"; + const NAME: &'static ::core::primitive::str = "skinColors"; } impl cynic::schema::HasField<skinColors> for super::super::Species { type Type = Option<Vec<Option<super::super::String>>>; @@ -2163,7 +2164,7 @@ pub mod __fields { pub struct language; impl cynic::schema::Field for language { type Type = Option<super::super::String>; - const NAME: &'static str = "language"; + const NAME: &'static ::core::primitive::str = "language"; } impl cynic::schema::HasField<language> for super::super::Species { type Type = Option<super::super::String>; @@ -2171,7 +2172,7 @@ pub mod __fields { pub struct homeworld; impl cynic::schema::Field for homeworld { type Type = Option<super::super::Planet>; - const NAME: &'static str = "homeworld"; + const NAME: &'static ::core::primitive::str = "homeworld"; } impl cynic::schema::HasField<homeworld> for super::super::Species { type Type = Option<super::super::Planet>; @@ -2179,7 +2180,7 @@ pub mod __fields { pub struct personConnection; impl cynic::schema::Field for personConnection { type Type = Option<super::super::SpeciesPeopleConnection>; - const NAME: &'static str = "personConnection"; + const NAME: &'static ::core::primitive::str = "personConnection"; } impl cynic::schema::HasField<personConnection> for super::super::Species { type Type = Option<super::super::SpeciesPeopleConnection>; @@ -2188,28 +2189,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::personConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::personConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::personConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::personConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct filmConnection; impl cynic::schema::Field for filmConnection { type Type = Option<super::super::SpeciesFilmsConnection>; - const NAME: &'static str = "filmConnection"; + const NAME: &'static ::core::primitive::str = "filmConnection"; } impl cynic::schema::HasField<filmConnection> for super::super::Species { type Type = Option<super::super::SpeciesFilmsConnection>; @@ -2218,28 +2219,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct created; impl cynic::schema::Field for created { type Type = Option<super::super::String>; - const NAME: &'static str = "created"; + const NAME: &'static ::core::primitive::str = "created"; } impl cynic::schema::HasField<created> for super::super::Species { type Type = Option<super::super::String>; @@ -2247,7 +2248,7 @@ pub mod __fields { pub struct edited; impl cynic::schema::Field for edited { type Type = Option<super::super::String>; - const NAME: &'static str = "edited"; + const NAME: &'static ::core::primitive::str = "edited"; } impl cynic::schema::HasField<edited> for super::super::Species { type Type = Option<super::super::String>; @@ -2255,7 +2256,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Species { type Type = super::super::ID; @@ -2263,7 +2264,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Species { type Type = super::super::String; @@ -2273,7 +2274,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::SpeciesConnection { type Type = super::super::PageInfo; @@ -2281,7 +2282,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::SpeciesEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::SpeciesConnection { type Type = Option<Vec<Option<super::super::SpeciesEdge>>>; @@ -2289,7 +2290,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::SpeciesConnection { type Type = Option<super::super::Int>; @@ -2297,7 +2298,7 @@ pub mod __fields { pub struct species; impl cynic::schema::Field for species { type Type = Option<Vec<Option<super::super::Species>>>; - const NAME: &'static str = "species"; + const NAME: &'static ::core::primitive::str = "species"; } impl cynic::schema::HasField<species> for super::super::SpeciesConnection { type Type = Option<Vec<Option<super::super::Species>>>; @@ -2305,7 +2306,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::SpeciesConnection { type Type = super::super::String; @@ -2315,7 +2316,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Species>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::SpeciesEdge { type Type = Option<super::super::Species>; @@ -2323,7 +2324,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::SpeciesEdge { type Type = super::super::String; @@ -2331,7 +2332,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::SpeciesEdge { type Type = super::super::String; @@ -2341,7 +2342,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::SpeciesFilmsConnection { type Type = super::super::PageInfo; @@ -2349,7 +2350,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::SpeciesFilmsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::SpeciesFilmsConnection { type Type = Option<Vec<Option<super::super::SpeciesFilmsEdge>>>; @@ -2357,7 +2358,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::SpeciesFilmsConnection { type Type = Option<super::super::Int>; @@ -2365,7 +2366,7 @@ pub mod __fields { pub struct films; impl cynic::schema::Field for films { type Type = Option<Vec<Option<super::super::Film>>>; - const NAME: &'static str = "films"; + const NAME: &'static ::core::primitive::str = "films"; } impl cynic::schema::HasField<films> for super::super::SpeciesFilmsConnection { type Type = Option<Vec<Option<super::super::Film>>>; @@ -2373,7 +2374,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::SpeciesFilmsConnection { type Type = super::super::String; @@ -2383,7 +2384,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Film>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::SpeciesFilmsEdge { type Type = Option<super::super::Film>; @@ -2391,7 +2392,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::SpeciesFilmsEdge { type Type = super::super::String; @@ -2399,7 +2400,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::SpeciesFilmsEdge { type Type = super::super::String; @@ -2409,7 +2410,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::SpeciesPeopleConnection { type Type = super::super::PageInfo; @@ -2417,7 +2418,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::SpeciesPeopleEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::SpeciesPeopleConnection { type Type = Option<Vec<Option<super::super::SpeciesPeopleEdge>>>; @@ -2425,7 +2426,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::SpeciesPeopleConnection { type Type = Option<super::super::Int>; @@ -2433,7 +2434,7 @@ pub mod __fields { pub struct people; impl cynic::schema::Field for people { type Type = Option<Vec<Option<super::super::Person>>>; - const NAME: &'static str = "people"; + const NAME: &'static ::core::primitive::str = "people"; } impl cynic::schema::HasField<people> for super::super::SpeciesPeopleConnection { type Type = Option<Vec<Option<super::super::Person>>>; @@ -2441,7 +2442,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::SpeciesPeopleConnection { type Type = super::super::String; @@ -2451,7 +2452,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Person>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::SpeciesPeopleEdge { type Type = Option<super::super::Person>; @@ -2459,7 +2460,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::SpeciesPeopleEdge { type Type = super::super::String; @@ -2467,7 +2468,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::SpeciesPeopleEdge { type Type = super::super::String; @@ -2477,7 +2478,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Starship { type Type = Option<super::super::String>; @@ -2485,7 +2486,7 @@ pub mod __fields { pub struct model; impl cynic::schema::Field for model { type Type = Option<super::super::String>; - const NAME: &'static str = "model"; + const NAME: &'static ::core::primitive::str = "model"; } impl cynic::schema::HasField<model> for super::super::Starship { type Type = Option<super::super::String>; @@ -2493,7 +2494,7 @@ pub mod __fields { pub struct starshipClass; impl cynic::schema::Field for starshipClass { type Type = Option<super::super::String>; - const NAME: &'static str = "starshipClass"; + const NAME: &'static ::core::primitive::str = "starshipClass"; } impl cynic::schema::HasField<starshipClass> for super::super::Starship { type Type = Option<super::super::String>; @@ -2501,7 +2502,7 @@ pub mod __fields { pub struct manufacturers; impl cynic::schema::Field for manufacturers { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "manufacturers"; + const NAME: &'static ::core::primitive::str = "manufacturers"; } impl cynic::schema::HasField<manufacturers> for super::super::Starship { type Type = Option<Vec<Option<super::super::String>>>; @@ -2509,7 +2510,7 @@ pub mod __fields { pub struct costInCredits; impl cynic::schema::Field for costInCredits { type Type = Option<super::super::Float>; - const NAME: &'static str = "costInCredits"; + const NAME: &'static ::core::primitive::str = "costInCredits"; } impl cynic::schema::HasField<costInCredits> for super::super::Starship { type Type = Option<super::super::Float>; @@ -2517,7 +2518,7 @@ pub mod __fields { pub struct length; impl cynic::schema::Field for length { type Type = Option<super::super::Float>; - const NAME: &'static str = "length"; + const NAME: &'static ::core::primitive::str = "length"; } impl cynic::schema::HasField<length> for super::super::Starship { type Type = Option<super::super::Float>; @@ -2525,7 +2526,7 @@ pub mod __fields { pub struct crew; impl cynic::schema::Field for crew { type Type = Option<super::super::String>; - const NAME: &'static str = "crew"; + const NAME: &'static ::core::primitive::str = "crew"; } impl cynic::schema::HasField<crew> for super::super::Starship { type Type = Option<super::super::String>; @@ -2533,7 +2534,7 @@ pub mod __fields { pub struct passengers; impl cynic::schema::Field for passengers { type Type = Option<super::super::String>; - const NAME: &'static str = "passengers"; + const NAME: &'static ::core::primitive::str = "passengers"; } impl cynic::schema::HasField<passengers> for super::super::Starship { type Type = Option<super::super::String>; @@ -2541,7 +2542,7 @@ pub mod __fields { pub struct maxAtmospheringSpeed; impl cynic::schema::Field for maxAtmospheringSpeed { type Type = Option<super::super::Int>; - const NAME: &'static str = "maxAtmospheringSpeed"; + const NAME: &'static ::core::primitive::str = "maxAtmospheringSpeed"; } impl cynic::schema::HasField<maxAtmospheringSpeed> for super::super::Starship { type Type = Option<super::super::Int>; @@ -2549,7 +2550,7 @@ pub mod __fields { pub struct hyperdriveRating; impl cynic::schema::Field for hyperdriveRating { type Type = Option<super::super::Float>; - const NAME: &'static str = "hyperdriveRating"; + const NAME: &'static ::core::primitive::str = "hyperdriveRating"; } impl cynic::schema::HasField<hyperdriveRating> for super::super::Starship { type Type = Option<super::super::Float>; @@ -2557,7 +2558,7 @@ pub mod __fields { pub struct MGLT; impl cynic::schema::Field for MGLT { type Type = Option<super::super::Int>; - const NAME: &'static str = "MGLT"; + const NAME: &'static ::core::primitive::str = "MGLT"; } impl cynic::schema::HasField<MGLT> for super::super::Starship { type Type = Option<super::super::Int>; @@ -2565,7 +2566,7 @@ pub mod __fields { pub struct cargoCapacity; impl cynic::schema::Field for cargoCapacity { type Type = Option<super::super::Float>; - const NAME: &'static str = "cargoCapacity"; + const NAME: &'static ::core::primitive::str = "cargoCapacity"; } impl cynic::schema::HasField<cargoCapacity> for super::super::Starship { type Type = Option<super::super::Float>; @@ -2573,7 +2574,7 @@ pub mod __fields { pub struct consumables; impl cynic::schema::Field for consumables { type Type = Option<super::super::String>; - const NAME: &'static str = "consumables"; + const NAME: &'static ::core::primitive::str = "consumables"; } impl cynic::schema::HasField<consumables> for super::super::Starship { type Type = Option<super::super::String>; @@ -2581,7 +2582,7 @@ pub mod __fields { pub struct pilotConnection; impl cynic::schema::Field for pilotConnection { type Type = Option<super::super::StarshipPilotsConnection>; - const NAME: &'static str = "pilotConnection"; + const NAME: &'static ::core::primitive::str = "pilotConnection"; } impl cynic::schema::HasField<pilotConnection> for super::super::Starship { type Type = Option<super::super::StarshipPilotsConnection>; @@ -2590,28 +2591,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::pilotConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::pilotConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::pilotConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::pilotConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct filmConnection; impl cynic::schema::Field for filmConnection { type Type = Option<super::super::StarshipFilmsConnection>; - const NAME: &'static str = "filmConnection"; + const NAME: &'static ::core::primitive::str = "filmConnection"; } impl cynic::schema::HasField<filmConnection> for super::super::Starship { type Type = Option<super::super::StarshipFilmsConnection>; @@ -2620,28 +2621,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct created; impl cynic::schema::Field for created { type Type = Option<super::super::String>; - const NAME: &'static str = "created"; + const NAME: &'static ::core::primitive::str = "created"; } impl cynic::schema::HasField<created> for super::super::Starship { type Type = Option<super::super::String>; @@ -2649,7 +2650,7 @@ pub mod __fields { pub struct edited; impl cynic::schema::Field for edited { type Type = Option<super::super::String>; - const NAME: &'static str = "edited"; + const NAME: &'static ::core::primitive::str = "edited"; } impl cynic::schema::HasField<edited> for super::super::Starship { type Type = Option<super::super::String>; @@ -2657,7 +2658,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Starship { type Type = super::super::ID; @@ -2665,7 +2666,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Starship { type Type = super::super::String; @@ -2675,7 +2676,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::StarshipFilmsConnection { type Type = super::super::PageInfo; @@ -2683,7 +2684,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::StarshipFilmsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::StarshipFilmsConnection { type Type = Option<Vec<Option<super::super::StarshipFilmsEdge>>>; @@ -2691,7 +2692,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::StarshipFilmsConnection { type Type = Option<super::super::Int>; @@ -2699,7 +2700,7 @@ pub mod __fields { pub struct films; impl cynic::schema::Field for films { type Type = Option<Vec<Option<super::super::Film>>>; - const NAME: &'static str = "films"; + const NAME: &'static ::core::primitive::str = "films"; } impl cynic::schema::HasField<films> for super::super::StarshipFilmsConnection { type Type = Option<Vec<Option<super::super::Film>>>; @@ -2707,7 +2708,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::StarshipFilmsConnection { type Type = super::super::String; @@ -2717,7 +2718,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Film>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::StarshipFilmsEdge { type Type = Option<super::super::Film>; @@ -2725,7 +2726,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::StarshipFilmsEdge { type Type = super::super::String; @@ -2733,7 +2734,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::StarshipFilmsEdge { type Type = super::super::String; @@ -2743,7 +2744,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::StarshipPilotsConnection { type Type = super::super::PageInfo; @@ -2751,7 +2752,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::StarshipPilotsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::StarshipPilotsConnection { type Type = Option<Vec<Option<super::super::StarshipPilotsEdge>>>; @@ -2759,7 +2760,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::StarshipPilotsConnection { type Type = Option<super::super::Int>; @@ -2767,7 +2768,7 @@ pub mod __fields { pub struct pilots; impl cynic::schema::Field for pilots { type Type = Option<Vec<Option<super::super::Person>>>; - const NAME: &'static str = "pilots"; + const NAME: &'static ::core::primitive::str = "pilots"; } impl cynic::schema::HasField<pilots> for super::super::StarshipPilotsConnection { type Type = Option<Vec<Option<super::super::Person>>>; @@ -2775,7 +2776,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::StarshipPilotsConnection { type Type = super::super::String; @@ -2785,7 +2786,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Person>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::StarshipPilotsEdge { type Type = Option<super::super::Person>; @@ -2793,7 +2794,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::StarshipPilotsEdge { type Type = super::super::String; @@ -2801,7 +2802,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::StarshipPilotsEdge { type Type = super::super::String; @@ -2811,7 +2812,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::StarshipsConnection { type Type = super::super::PageInfo; @@ -2819,7 +2820,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::StarshipsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::StarshipsConnection { type Type = Option<Vec<Option<super::super::StarshipsEdge>>>; @@ -2827,7 +2828,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::StarshipsConnection { type Type = Option<super::super::Int>; @@ -2835,7 +2836,7 @@ pub mod __fields { pub struct starships; impl cynic::schema::Field for starships { type Type = Option<Vec<Option<super::super::Starship>>>; - const NAME: &'static str = "starships"; + const NAME: &'static ::core::primitive::str = "starships"; } impl cynic::schema::HasField<starships> for super::super::StarshipsConnection { type Type = Option<Vec<Option<super::super::Starship>>>; @@ -2843,7 +2844,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::StarshipsConnection { type Type = super::super::String; @@ -2853,7 +2854,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Starship>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::StarshipsEdge { type Type = Option<super::super::Starship>; @@ -2861,7 +2862,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::StarshipsEdge { type Type = super::super::String; @@ -2869,7 +2870,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::StarshipsEdge { type Type = super::super::String; @@ -2879,7 +2880,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -2887,7 +2888,7 @@ pub mod __fields { pub struct model; impl cynic::schema::Field for model { type Type = Option<super::super::String>; - const NAME: &'static str = "model"; + const NAME: &'static ::core::primitive::str = "model"; } impl cynic::schema::HasField<model> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -2895,7 +2896,7 @@ pub mod __fields { pub struct vehicleClass; impl cynic::schema::Field for vehicleClass { type Type = Option<super::super::String>; - const NAME: &'static str = "vehicleClass"; + const NAME: &'static ::core::primitive::str = "vehicleClass"; } impl cynic::schema::HasField<vehicleClass> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -2903,7 +2904,7 @@ pub mod __fields { pub struct manufacturers; impl cynic::schema::Field for manufacturers { type Type = Option<Vec<Option<super::super::String>>>; - const NAME: &'static str = "manufacturers"; + const NAME: &'static ::core::primitive::str = "manufacturers"; } impl cynic::schema::HasField<manufacturers> for super::super::Vehicle { type Type = Option<Vec<Option<super::super::String>>>; @@ -2911,7 +2912,7 @@ pub mod __fields { pub struct costInCredits; impl cynic::schema::Field for costInCredits { type Type = Option<super::super::Float>; - const NAME: &'static str = "costInCredits"; + const NAME: &'static ::core::primitive::str = "costInCredits"; } impl cynic::schema::HasField<costInCredits> for super::super::Vehicle { type Type = Option<super::super::Float>; @@ -2919,7 +2920,7 @@ pub mod __fields { pub struct length; impl cynic::schema::Field for length { type Type = Option<super::super::Float>; - const NAME: &'static str = "length"; + const NAME: &'static ::core::primitive::str = "length"; } impl cynic::schema::HasField<length> for super::super::Vehicle { type Type = Option<super::super::Float>; @@ -2927,7 +2928,7 @@ pub mod __fields { pub struct crew; impl cynic::schema::Field for crew { type Type = Option<super::super::String>; - const NAME: &'static str = "crew"; + const NAME: &'static ::core::primitive::str = "crew"; } impl cynic::schema::HasField<crew> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -2935,7 +2936,7 @@ pub mod __fields { pub struct passengers; impl cynic::schema::Field for passengers { type Type = Option<super::super::String>; - const NAME: &'static str = "passengers"; + const NAME: &'static ::core::primitive::str = "passengers"; } impl cynic::schema::HasField<passengers> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -2943,7 +2944,7 @@ pub mod __fields { pub struct maxAtmospheringSpeed; impl cynic::schema::Field for maxAtmospheringSpeed { type Type = Option<super::super::Int>; - const NAME: &'static str = "maxAtmospheringSpeed"; + const NAME: &'static ::core::primitive::str = "maxAtmospheringSpeed"; } impl cynic::schema::HasField<maxAtmospheringSpeed> for super::super::Vehicle { type Type = Option<super::super::Int>; @@ -2951,7 +2952,7 @@ pub mod __fields { pub struct cargoCapacity; impl cynic::schema::Field for cargoCapacity { type Type = Option<super::super::Float>; - const NAME: &'static str = "cargoCapacity"; + const NAME: &'static ::core::primitive::str = "cargoCapacity"; } impl cynic::schema::HasField<cargoCapacity> for super::super::Vehicle { type Type = Option<super::super::Float>; @@ -2959,7 +2960,7 @@ pub mod __fields { pub struct consumables; impl cynic::schema::Field for consumables { type Type = Option<super::super::String>; - const NAME: &'static str = "consumables"; + const NAME: &'static ::core::primitive::str = "consumables"; } impl cynic::schema::HasField<consumables> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -2967,7 +2968,7 @@ pub mod __fields { pub struct pilotConnection; impl cynic::schema::Field for pilotConnection { type Type = Option<super::super::VehiclePilotsConnection>; - const NAME: &'static str = "pilotConnection"; + const NAME: &'static ::core::primitive::str = "pilotConnection"; } impl cynic::schema::HasField<pilotConnection> for super::super::Vehicle { type Type = Option<super::super::VehiclePilotsConnection>; @@ -2976,28 +2977,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::pilotConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::pilotConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::pilotConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::pilotConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct filmConnection; impl cynic::schema::Field for filmConnection { type Type = Option<super::super::VehicleFilmsConnection>; - const NAME: &'static str = "filmConnection"; + const NAME: &'static ::core::primitive::str = "filmConnection"; } impl cynic::schema::HasField<filmConnection> for super::super::Vehicle { type Type = Option<super::super::VehicleFilmsConnection>; @@ -3006,28 +3007,28 @@ pub mod __fields { pub struct after; impl cynic::schema::HasArgument<after> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "after"; + const NAME: &'static ::core::primitive::str = "after"; } pub struct first; impl cynic::schema::HasArgument<first> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "first"; + const NAME: &'static ::core::primitive::str = "first"; } pub struct before; impl cynic::schema::HasArgument<before> for super::filmConnection { type ArgumentType = Option<super::super::super::String>; - const NAME: &'static str = "before"; + const NAME: &'static ::core::primitive::str = "before"; } pub struct last; impl cynic::schema::HasArgument<last> for super::filmConnection { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "last"; + const NAME: &'static ::core::primitive::str = "last"; } } pub struct created; impl cynic::schema::Field for created { type Type = Option<super::super::String>; - const NAME: &'static str = "created"; + const NAME: &'static ::core::primitive::str = "created"; } impl cynic::schema::HasField<created> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -3035,7 +3036,7 @@ pub mod __fields { pub struct edited; impl cynic::schema::Field for edited { type Type = Option<super::super::String>; - const NAME: &'static str = "edited"; + const NAME: &'static ::core::primitive::str = "edited"; } impl cynic::schema::HasField<edited> for super::super::Vehicle { type Type = Option<super::super::String>; @@ -3043,7 +3044,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::ID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Vehicle { type Type = super::super::ID; @@ -3051,7 +3052,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Vehicle { type Type = super::super::String; @@ -3061,7 +3062,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::VehicleFilmsConnection { type Type = super::super::PageInfo; @@ -3069,7 +3070,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::VehicleFilmsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::VehicleFilmsConnection { type Type = Option<Vec<Option<super::super::VehicleFilmsEdge>>>; @@ -3077,7 +3078,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::VehicleFilmsConnection { type Type = Option<super::super::Int>; @@ -3085,7 +3086,7 @@ pub mod __fields { pub struct films; impl cynic::schema::Field for films { type Type = Option<Vec<Option<super::super::Film>>>; - const NAME: &'static str = "films"; + const NAME: &'static ::core::primitive::str = "films"; } impl cynic::schema::HasField<films> for super::super::VehicleFilmsConnection { type Type = Option<Vec<Option<super::super::Film>>>; @@ -3093,7 +3094,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::VehicleFilmsConnection { type Type = super::super::String; @@ -3103,7 +3104,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Film>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::VehicleFilmsEdge { type Type = Option<super::super::Film>; @@ -3111,7 +3112,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::VehicleFilmsEdge { type Type = super::super::String; @@ -3119,7 +3120,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::VehicleFilmsEdge { type Type = super::super::String; @@ -3129,7 +3130,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::VehiclePilotsConnection { type Type = super::super::PageInfo; @@ -3137,7 +3138,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::VehiclePilotsEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::VehiclePilotsConnection { type Type = Option<Vec<Option<super::super::VehiclePilotsEdge>>>; @@ -3145,7 +3146,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::VehiclePilotsConnection { type Type = Option<super::super::Int>; @@ -3153,7 +3154,7 @@ pub mod __fields { pub struct pilots; impl cynic::schema::Field for pilots { type Type = Option<Vec<Option<super::super::Person>>>; - const NAME: &'static str = "pilots"; + const NAME: &'static ::core::primitive::str = "pilots"; } impl cynic::schema::HasField<pilots> for super::super::VehiclePilotsConnection { type Type = Option<Vec<Option<super::super::Person>>>; @@ -3161,7 +3162,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::VehiclePilotsConnection { type Type = super::super::String; @@ -3171,7 +3172,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Person>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::VehiclePilotsEdge { type Type = Option<super::super::Person>; @@ -3179,7 +3180,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::VehiclePilotsEdge { type Type = super::super::String; @@ -3187,7 +3188,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::VehiclePilotsEdge { type Type = super::super::String; @@ -3197,7 +3198,7 @@ pub mod __fields { pub struct pageInfo; impl cynic::schema::Field for pageInfo { type Type = super::super::PageInfo; - const NAME: &'static str = "pageInfo"; + const NAME: &'static ::core::primitive::str = "pageInfo"; } impl cynic::schema::HasField<pageInfo> for super::super::VehiclesConnection { type Type = super::super::PageInfo; @@ -3205,7 +3206,7 @@ pub mod __fields { pub struct edges; impl cynic::schema::Field for edges { type Type = Option<Vec<Option<super::super::VehiclesEdge>>>; - const NAME: &'static str = "edges"; + const NAME: &'static ::core::primitive::str = "edges"; } impl cynic::schema::HasField<edges> for super::super::VehiclesConnection { type Type = Option<Vec<Option<super::super::VehiclesEdge>>>; @@ -3213,7 +3214,7 @@ pub mod __fields { pub struct totalCount; impl cynic::schema::Field for totalCount { type Type = Option<super::super::Int>; - const NAME: &'static str = "totalCount"; + const NAME: &'static ::core::primitive::str = "totalCount"; } impl cynic::schema::HasField<totalCount> for super::super::VehiclesConnection { type Type = Option<super::super::Int>; @@ -3221,7 +3222,7 @@ pub mod __fields { pub struct vehicles; impl cynic::schema::Field for vehicles { type Type = Option<Vec<Option<super::super::Vehicle>>>; - const NAME: &'static str = "vehicles"; + const NAME: &'static ::core::primitive::str = "vehicles"; } impl cynic::schema::HasField<vehicles> for super::super::VehiclesConnection { type Type = Option<Vec<Option<super::super::Vehicle>>>; @@ -3229,7 +3230,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::VehiclesConnection { type Type = super::super::String; @@ -3239,7 +3240,7 @@ pub mod __fields { pub struct node; impl cynic::schema::Field for node { type Type = Option<super::super::Vehicle>; - const NAME: &'static str = "node"; + const NAME: &'static ::core::primitive::str = "node"; } impl cynic::schema::HasField<node> for super::super::VehiclesEdge { type Type = Option<super::super::Vehicle>; @@ -3247,7 +3248,7 @@ pub mod __fields { pub struct cursor; impl cynic::schema::Field for cursor { type Type = super::super::String; - const NAME: &'static str = "cursor"; + const NAME: &'static ::core::primitive::str = "cursor"; } impl cynic::schema::HasField<cursor> for super::super::VehiclesEdge { type Type = super::super::String; @@ -3255,7 +3256,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::VehiclesEdge { type Type = super::super::String; @@ -3341,4 +3342,3 @@ pub mod variable { const TYPE: VariableType = VariableType::Named("ID"); } } - diff --git a/cynic-codegen/tests/snapshots/use_schema__test_cases.graphql.snap b/cynic-codegen/tests/snapshots/use_schema__test_cases.graphql.snap index e832a32de..a13500755 100644 --- a/cynic-codegen/tests/snapshots/use_schema__test_cases.graphql.snap +++ b/cynic-codegen/tests/snapshots/use_schema__test_cases.graphql.snap @@ -1,9 +1,11 @@ --- source: cynic-codegen/tests/use-schema.rs expression: "format_code(format!(\"{}\", tokens))" +snapshot_kind: text --- impl cynic::schema::QueryRoot for Foo {} pub struct Bar; +pub struct FieldNameClashes; pub struct FlattenableEnums; pub struct Foo; pub struct RecursiveInputChild; @@ -15,16 +17,19 @@ impl cynic::schema::InputObjectMarker for SelfRecursiveInput {} pub struct States {} pub struct UUID {} impl cynic::schema::NamedType for UUID { - const NAME: &'static str = "UUID"; + const NAME: &'static ::core::primitive::str = "UUID"; } impl cynic::schema::NamedType for Bar { - const NAME: &'static str = "Bar"; + const NAME: &'static ::core::primitive::str = "Bar"; +} +impl cynic::schema::NamedType for FieldNameClashes { + const NAME: &'static ::core::primitive::str = "FieldNameClashes"; } impl cynic::schema::NamedType for FlattenableEnums { - const NAME: &'static str = "FlattenableEnums"; + const NAME: &'static ::core::primitive::str = "FlattenableEnums"; } impl cynic::schema::NamedType for Foo { - const NAME: &'static str = "Foo"; + const NAME: &'static ::core::primitive::str = "Foo"; } #[allow(non_snake_case, non_camel_case_types)] pub mod __fields { @@ -32,7 +37,7 @@ pub mod __fields { pub struct id; impl cynic::schema::Field for id { type Type = super::super::UUID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } impl cynic::schema::HasField<id> for super::super::Bar { type Type = super::super::UUID; @@ -40,7 +45,7 @@ pub mod __fields { pub struct name; impl cynic::schema::Field for name { type Type = Option<super::super::String>; - const NAME: &'static str = "name"; + const NAME: &'static ::core::primitive::str = "name"; } impl cynic::schema::HasField<name> for super::super::Bar { type Type = Option<super::super::String>; @@ -48,17 +53,59 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Bar { type Type = super::super::String; } } + pub mod FieldNameClashes { + pub struct str; + impl cynic::schema::Field for str { + type Type = Option<super::super::String>; + const NAME: &'static ::core::primitive::str = "str"; + } + impl cynic::schema::HasField<str> for super::super::FieldNameClashes { + type Type = Option<super::super::String>; + } + pub struct bool; + impl cynic::schema::Field for bool { + type Type = Option<super::super::Boolean>; + const NAME: &'static ::core::primitive::str = "bool"; + } + impl cynic::schema::HasField<bool> for super::super::FieldNameClashes { + type Type = Option<super::super::Boolean>; + } + pub struct i32; + impl cynic::schema::Field for i32 { + type Type = Option<super::super::Int>; + const NAME: &'static ::core::primitive::str = "i32"; + } + impl cynic::schema::HasField<i32> for super::super::FieldNameClashes { + type Type = Option<super::super::Int>; + } + pub struct u32; + impl cynic::schema::Field for u32 { + type Type = Option<super::super::Int>; + const NAME: &'static ::core::primitive::str = "u32"; + } + impl cynic::schema::HasField<u32> for super::super::FieldNameClashes { + type Type = Option<super::super::Int>; + } + pub struct __typename; + impl cynic::schema::Field for __typename { + type Type = super::super::String; + const NAME: &'static ::core::primitive::str = "__typename"; + } + impl cynic::schema::HasField<__typename> for super::super::FieldNameClashes { + type Type = super::super::String; + } + } pub mod FlattenableEnums { pub struct states; impl cynic::schema::Field for states { type Type = Option<Vec<Option<super::super::States>>>; - const NAME: &'static str = "states"; + const NAME: &'static ::core::primitive::str = "states"; } impl cynic::schema::HasField<states> for super::super::FlattenableEnums { type Type = Option<Vec<Option<super::super::States>>>; @@ -66,7 +113,7 @@ pub mod __fields { pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::FlattenableEnums { type Type = super::super::String; @@ -76,7 +123,7 @@ pub mod __fields { pub struct _Underscore; impl cynic::schema::Field for _Underscore { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "_"; + const NAME: &'static ::core::primitive::str = "_"; } impl cynic::schema::HasField<_Underscore> for super::super::Foo { type Type = Option<super::super::Boolean>; @@ -84,7 +131,7 @@ pub mod __fields { pub struct self_; impl cynic::schema::Field for self_ { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "self"; + const NAME: &'static ::core::primitive::str = "self"; } impl cynic::schema::HasField<self_> for super::super::Foo { type Type = Option<super::super::Boolean>; @@ -92,7 +139,7 @@ pub mod __fields { pub struct super_; impl cynic::schema::Field for super_ { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "super"; + const NAME: &'static ::core::primitive::str = "super"; } impl cynic::schema::HasField<super_> for super::super::Foo { type Type = Option<super::super::Boolean>; @@ -100,7 +147,7 @@ pub mod __fields { pub struct crate_; impl cynic::schema::Field for crate_ { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "crate"; + const NAME: &'static ::core::primitive::str = "crate"; } impl cynic::schema::HasField<crate_> for super::super::Foo { type Type = Option<super::super::Boolean>; @@ -108,7 +155,7 @@ pub mod __fields { pub struct r#async; impl cynic::schema::Field for r#async { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "async"; + const NAME: &'static ::core::primitive::str = "async"; } impl cynic::schema::HasField<r#async> for super::super::Foo { type Type = Option<super::super::Boolean>; @@ -116,7 +163,7 @@ pub mod __fields { pub struct bar; impl cynic::schema::Field for bar { type Type = Option<super::super::Bar>; - const NAME: &'static str = "bar"; + const NAME: &'static ::core::primitive::str = "bar"; } impl cynic::schema::HasField<bar> for super::super::Foo { type Type = Option<super::super::Bar>; @@ -125,13 +172,13 @@ pub mod __fields { pub struct id; impl cynic::schema::HasArgument<id> for super::bar { type ArgumentType = super::super::super::UUID; - const NAME: &'static str = "id"; + const NAME: &'static ::core::primitive::str = "id"; } } pub struct fieldWithKeywordArg; impl cynic::schema::Field for fieldWithKeywordArg { type Type = Vec<super::super::Int>; - const NAME: &'static str = "fieldWithKeywordArg"; + const NAME: &'static ::core::primitive::str = "fieldWithKeywordArg"; } impl cynic::schema::HasField<fieldWithKeywordArg> for super::super::Foo { type Type = Vec<super::super::Int>; @@ -140,13 +187,13 @@ pub mod __fields { pub struct r#where; impl cynic::schema::HasArgument<r#where> for super::fieldWithKeywordArg { type ArgumentType = Option<super::super::super::Int>; - const NAME: &'static str = "where"; + const NAME: &'static ::core::primitive::str = "where"; } } pub struct recursiveInputField; impl cynic::schema::Field for recursiveInputField { type Type = Option<super::super::Boolean>; - const NAME: &'static str = "recursiveInputField"; + const NAME: &'static ::core::primitive::str = "recursiveInputField"; } impl cynic::schema::HasField<recursiveInputField> for super::super::Foo { type Type = Option<super::super::Boolean>; @@ -155,18 +202,18 @@ pub mod __fields { pub struct recursive; impl cynic::schema::HasArgument<recursive> for super::recursiveInputField { type ArgumentType = Option<super::super::super::SelfRecursiveInput>; - const NAME: &'static str = "recursive"; + const NAME: &'static ::core::primitive::str = "recursive"; } pub struct recursive2; impl cynic::schema::HasArgument<recursive2> for super::recursiveInputField { type ArgumentType = Option<super::super::super::RecursiveInputParent>; - const NAME: &'static str = "recursive2"; + const NAME: &'static ::core::primitive::str = "recursive2"; } } pub struct fieldWithStringArg; impl cynic::schema::Field for fieldWithStringArg { type Type = Option<super::super::Int>; - const NAME: &'static str = "fieldWithStringArg"; + const NAME: &'static ::core::primitive::str = "fieldWithStringArg"; } impl cynic::schema::HasField<fieldWithStringArg> for super::super::Foo { type Type = Option<super::super::Int>; @@ -175,13 +222,21 @@ pub mod __fields { pub struct input; impl cynic::schema::HasArgument<input> for super::fieldWithStringArg { type ArgumentType = super::super::super::String; - const NAME: &'static str = "input"; + const NAME: &'static ::core::primitive::str = "input"; } } + pub struct clashes; + impl cynic::schema::Field for clashes { + type Type = Option<super::super::FieldNameClashes>; + const NAME: &'static ::core::primitive::str = "clashes"; + } + impl cynic::schema::HasField<clashes> for super::super::Foo { + type Type = Option<super::super::FieldNameClashes>; + } pub struct __typename; impl cynic::schema::Field for __typename { type Type = super::super::String; - const NAME: &'static str = "__typename"; + const NAME: &'static ::core::primitive::str = "__typename"; } impl cynic::schema::HasField<__typename> for super::super::Foo { type Type = super::super::String; @@ -191,7 +246,7 @@ pub mod __fields { pub struct recurse; impl cynic::schema::Field for recurse { type Type = Option<super::super::RecursiveInputParent>; - const NAME: &'static str = "recurse"; + const NAME: &'static ::core::primitive::str = "recurse"; } impl cynic::schema::HasInputField<recurse, Option<super::super::RecursiveInputParent>> for super::super::RecursiveInputChild @@ -202,7 +257,7 @@ pub mod __fields { pub struct recurse; impl cynic::schema::Field for recurse { type Type = Option<super::super::RecursiveInputChild>; - const NAME: &'static str = "recurse"; + const NAME: &'static ::core::primitive::str = "recurse"; } impl cynic::schema::HasInputField<recurse, Option<super::super::RecursiveInputChild>> for super::super::RecursiveInputParent @@ -213,7 +268,7 @@ pub mod __fields { pub struct recurse; impl cynic::schema::Field for recurse { type Type = Option<super::super::SelfRecursiveInput>; - const NAME: &'static str = "recurse"; + const NAME: &'static ::core::primitive::str = "recurse"; } impl cynic::schema::HasInputField<recurse, Option<super::super::SelfRecursiveInput>> for super::super::SelfRecursiveInput @@ -300,4 +355,3 @@ pub mod variable { const TYPE: VariableType = VariableType::Named("ID"); } } - diff --git a/cynic-parser/tests/snapshots/actual_schemas__test_cases__snapshot.snap b/cynic-parser/tests/snapshots/actual_schemas__test_cases__snapshot.snap index 6449caee7..7ef8cea21 100644 --- a/cynic-parser/tests/snapshots/actual_schemas__test_cases__snapshot.snap +++ b/cynic-parser/tests/snapshots/actual_schemas__test_cases__snapshot.snap @@ -1,6 +1,7 @@ --- source: cynic-parser/tests/actual_schemas.rs -expression: parsed.to_sdl() +expression: parsed.to_sdl_pretty() +snapshot_kind: text --- schema { query: Foo @@ -19,6 +20,7 @@ type Foo { recursive2: RecursiveInputParent ): Boolean fieldWithStringArg(input: String!): Int + clashes: FieldNameClashes } type Bar { @@ -50,3 +52,9 @@ type FlattenableEnums { states: [States] } +type FieldNameClashes { + str: String + bool: Boolean + i32: Int + u32: Int +} diff --git a/schemas/test_cases.graphql b/schemas/test_cases.graphql index 9d67f9d85..9d22d7997 100644 --- a/schemas/test_cases.graphql +++ b/schemas/test_cases.graphql @@ -18,6 +18,8 @@ type Foo { ): Boolean fieldWithStringArg(input: String!): Int + + clashes: FieldNameClashes } type Bar { @@ -48,3 +50,10 @@ input RecursiveInputChild { type FlattenableEnums { states: [States] } + +type FieldNameClashes { + str: String + bool: Boolean + i32: Int + u32: Int +}