├── .cargo └── config.toml ├── .circleci └── config.yml ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── docs.md │ └── feature_request.md └── renovate.json5 ├── .gitignore ├── ARCHITECTURE.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── crates ├── apollo-compiler │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── benches │ │ ├── directives_validation.rs │ │ ├── fields_validation.rs │ │ ├── fragments_validation.rs │ │ ├── multi_source.rs │ │ └── testdata │ │ │ ├── simple_query.graphql │ │ │ ├── simple_schema.graphql │ │ │ ├── supergraph.graphql │ │ │ └── supergraph_query.graphql │ ├── examples │ │ ├── async_resolvers.rs │ │ ├── documents │ │ │ ├── get_dog_name.graphql │ │ │ ├── get_dog_with_fragments.graphql │ │ │ ├── schema.graphql │ │ │ └── schema_extension.graphql │ │ ├── extract_directives_used_by_query.rs │ │ ├── file_watcher.rs │ │ ├── hello_world.rs │ │ ├── introspect.rs │ │ ├── multi_source_validation.rs │ │ ├── query_with_errors.graphql │ │ ├── rename.rs │ │ ├── timed.rs │ │ └── validate.rs │ ├── src │ │ ├── ast │ │ │ ├── from_cst.rs │ │ │ ├── impls.rs │ │ │ ├── mod.rs │ │ │ └── serialize.rs │ │ ├── built_in_types.graphql │ │ ├── collections.rs │ │ ├── coordinate.rs │ │ ├── diagnostic.rs │ │ ├── executable │ │ │ ├── from_ast.rs │ │ │ ├── mod.rs │ │ │ ├── serialize.rs │ │ │ └── validation.rs │ │ ├── introspection │ │ │ ├── max_depth.rs │ │ │ ├── mod.rs │ │ │ └── resolvers.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── name.rs │ │ ├── node.rs │ │ ├── parser.rs │ │ ├── request.rs │ │ ├── resolvers │ │ │ ├── execution.rs │ │ │ ├── input_coercion.rs │ │ │ ├── mod.rs │ │ │ └── result_coercion.rs │ │ ├── response.rs │ │ ├── schema │ │ │ ├── component.rs │ │ │ ├── from_ast.rs │ │ │ ├── mod.rs │ │ │ ├── serialize.rs │ │ │ └── validation.rs │ │ └── validation │ │ │ ├── argument.rs │ │ │ ├── diagnostics.rs │ │ │ ├── directive.rs │ │ │ ├── enum_.rs │ │ │ ├── field.rs │ │ │ ├── fragment.rs │ │ │ ├── input_object.rs │ │ │ ├── interface.rs │ │ │ ├── mod.rs │ │ │ ├── object.rs │ │ │ ├── operation.rs │ │ │ ├── scalar.rs │ │ │ ├── schema.rs │ │ │ ├── selection.rs │ │ │ ├── union_.rs │ │ │ ├── value.rs │ │ │ └── variable.rs │ ├── test_data │ │ ├── diagnostics │ │ │ ├── 0001_duplicate_operatoin_names.graphql │ │ │ ├── 0001_duplicate_operatoin_names.txt │ │ │ ├── 0002_multiple_anonymous_operations.graphql │ │ │ ├── 0002_multiple_anonymous_operations.txt │ │ │ ├── 0003_anonymous_and_named_operation.graphql │ │ │ ├── 0003_anonymous_and_named_operation.txt │ │ │ ├── 0004_subscription_with_multiple_root_fields.graphql │ │ │ ├── 0004_subscription_with_multiple_root_fields.txt │ │ │ ├── 0005_subscription_with_multiple_root_fields_in_fragment_spreads.graphql │ │ │ ├── 0005_subscription_with_multiple_root_fields_in_fragment_spreads.txt │ │ │ ├── 0006_subscription_with_multiple_root_fields_in_inline_fragments.graphql │ │ │ ├── 0006_subscription_with_multiple_root_fields_in_inline_fragments.txt │ │ │ ├── 0007_operation_with_undefined_variables.graphql │ │ │ ├── 0007_operation_with_undefined_variables.txt │ │ │ ├── 0008_operation_with_undefined_variables_in_inline_fragment.graphql │ │ │ ├── 0008_operation_with_undefined_variables_in_inline_fragment.txt │ │ │ ├── 0009_operation_with_undefined_variables_in_fragment.graphql │ │ │ ├── 0009_operation_with_undefined_variables_in_fragment.txt │ │ │ ├── 0010_operation_with_unused_variable.graphql │ │ │ ├── 0010_operation_with_unused_variable.txt │ │ │ ├── 0011_syntactic_errors_from_parser.graphql │ │ │ ├── 0011_syntactic_errors_from_parser.txt │ │ │ ├── 0012_schema_definition_with_missing_query_operation_type.graphql │ │ │ ├── 0012_schema_definition_with_missing_query_operation_type.txt │ │ │ ├── 0013_schema_definition_with_duplicate_root_type_operations.graphql │ │ │ ├── 0013_schema_definition_with_duplicate_root_type_operations.txt │ │ │ ├── 0014_subscription_operation_without_subscription_schema_operation_type.graphql │ │ │ ├── 0014_subscription_operation_without_subscription_schema_operation_type.txt │ │ │ ├── 0015_mutation_operation_without_mutation_schema_definition.graphql │ │ │ ├── 0015_mutation_operation_without_mutation_schema_definition.txt │ │ │ ├── 0016_schema_with_built_in_scalar_definition.graphql │ │ │ ├── 0016_schema_with_built_in_scalar_definition.txt │ │ │ ├── 0017_schema_with_unspecified_scalar.graphql │ │ │ ├── 0017_schema_with_unspecified_scalar.txt │ │ │ ├── 0018_schema_with_specified_scalar_missing_values.graphql │ │ │ ├── 0018_schema_with_specified_scalar_missing_values.txt │ │ │ ├── 0019_enum_definition_with_duplicate_values.graphql │ │ │ ├── 0019_enum_definition_with_duplicate_values.txt │ │ │ ├── 0020_enum_values_with_uncapitalised_values.graphql │ │ │ ├── 0020_enum_values_with_uncapitalised_values.txt │ │ │ ├── 0021_union_definition_with_duplicate_members.graphql │ │ │ ├── 0021_union_definition_with_duplicate_members.txt │ │ │ ├── 0022_duplicate_interface_definitions.graphql │ │ │ ├── 0022_duplicate_interface_definitions.txt │ │ │ ├── 0023_interface_definition_with_cyclic_implements_interfaces.graphql │ │ │ ├── 0023_interface_definition_with_cyclic_implements_interfaces.txt │ │ │ ├── 0024_interface_definition_with_duplicate_fields.graphql │ │ │ ├── 0024_interface_definition_with_duplicate_fields.txt │ │ │ ├── 0025_interface_definition_with_missing_transitive_fields.graphql │ │ │ ├── 0025_interface_definition_with_missing_transitive_fields.txt │ │ │ ├── 0026_interface_definition_with_missing_implemetns_interface.graphql │ │ │ ├── 0026_interface_definition_with_missing_implemetns_interface.txt │ │ │ ├── 0027_interface_definition_with_undefined_implements_interface.graphql │ │ │ ├── 0027_interface_definition_with_undefined_implements_interface.txt │ │ │ ├── 0028_interface_definition_with_missing_fields_implements_intrefaces_undefined_interfaces.graphql │ │ │ ├── 0028_interface_definition_with_missing_fields_implements_intrefaces_undefined_interfaces.txt │ │ │ ├── 0029_directive_definitions_with_duplicate_names.graphql │ │ │ ├── 0029_directive_definitions_with_duplicate_names.txt │ │ │ ├── 0030_schema_with_duplicate_input_objects.graphql │ │ │ ├── 0030_schema_with_duplicate_input_objects.txt │ │ │ ├── 0031_input_object_with_duplicate_fields.graphql │ │ │ ├── 0031_input_object_with_duplicate_fields.txt │ │ │ ├── 0032_duplicate_object_type_definition.graphql │ │ │ ├── 0032_duplicate_object_type_definition.txt │ │ │ ├── 0033_object_type_definition_with_duplicate_fields.graphql │ │ │ ├── 0033_object_type_definition_with_duplicate_fields.txt │ │ │ ├── 0034_object_type_definition_with_missing_transitive_fields.graphql │ │ │ ├── 0034_object_type_definition_with_missing_transitive_fields.txt │ │ │ ├── 0035_object_type_definition_with_missing_implements_interfaces_definition.graphql │ │ │ ├── 0035_object_type_definition_with_missing_implements_interfaces_definition.txt │ │ │ ├── 0036_object_type_with_non_output_field_types.graphql │ │ │ ├── 0036_object_type_with_non_output_field_types.txt │ │ │ ├── 0037_interface_with_non_output_fields.graphql │ │ │ ├── 0037_interface_with_non_output_fields.txt │ │ │ ├── 0038_object_type_with_undefined_field_type.graphql │ │ │ ├── 0038_object_type_with_undefined_field_type.txt │ │ │ ├── 0039_interface_with_undefined_field_type.graphql │ │ │ ├── 0039_interface_with_undefined_field_type.txt │ │ │ ├── 0040_operation_with_undefined_fields_on_reference_type.graphql │ │ │ ├── 0040_operation_with_undefined_fields_on_reference_type.txt │ │ │ ├── 0041_subscription_operation_with_undefined_fields.graphql │ │ │ ├── 0041_subscription_operation_with_undefined_fields.txt │ │ │ ├── 0042_mutation_operation_with_undefined_fields.graphql │ │ │ ├── 0042_mutation_operation_with_undefined_fields.txt │ │ │ ├── 0043_undefined_union_member.graphql │ │ │ ├── 0043_undefined_union_member.txt │ │ │ ├── 0044_union_member_not_of_object_type.graphql │ │ │ ├── 0044_union_member_not_of_object_type.txt │ │ │ ├── 0045_operation_with_unused_variable_in_fragment.graphql │ │ │ ├── 0045_operation_with_unused_variable_in_fragment.txt │ │ │ ├── 0046_duplicate_directive_arguments.graphql │ │ │ ├── 0046_duplicate_directive_arguments.txt │ │ │ ├── 0047_duplicate_field_arguments.graphql │ │ │ ├── 0047_duplicate_field_arguments.txt │ │ │ ├── 0048_duplicate_field_argument_definition_names.graphql │ │ │ ├── 0048_duplicate_field_argument_definition_names.txt │ │ │ ├── 0049_duplicate_directive_argument_definition_names.graphql │ │ │ ├── 0049_duplicate_directive_argument_definition_names.txt │ │ │ ├── 0050_directives_in_invalid_locations.graphql │ │ │ ├── 0050_directives_in_invalid_locations.txt │ │ │ ├── 0051_subscription_operation_with_root_introspection_field.graphql │ │ │ ├── 0051_subscription_operation_with_root_introspection_field.txt │ │ │ ├── 0052_undefined_directive.graphql │ │ │ ├── 0052_undefined_directive.txt │ │ │ ├── 0053_argument_name_is_not_defined.graphql │ │ │ ├── 0053_argument_name_is_not_defined.txt │ │ │ ├── 0054_argument_not_provided.graphql │ │ │ ├── 0054_argument_not_provided.txt │ │ │ ├── 0055_duplicate_variable_definitions.graphql │ │ │ ├── 0055_duplicate_variable_definitions.txt │ │ │ ├── 0056_variables_are_input_types.graphql │ │ │ ├── 0056_variables_are_input_types.txt │ │ │ ├── 0057_duplicate_type_names.graphql │ │ │ ├── 0057_duplicate_type_names.txt │ │ │ ├── 0058_fragment_definitions_with_duplicate_names.graphql │ │ │ ├── 0058_fragment_definitions_with_duplicate_names.txt │ │ │ ├── 0059_root_operation_object_type.graphql │ │ │ ├── 0059_root_operation_object_type.txt │ │ │ ├── 0060_root_operation_definition_undefined_operation_type.graphql │ │ │ ├── 0060_root_operation_definition_undefined_operation_type.txt │ │ │ ├── 0061_root_operation_with_default_undefined_query.graphql │ │ │ ├── 0061_root_operation_with_default_undefined_query.txt │ │ │ ├── 0062_root_operation_with_list.graphql │ │ │ ├── 0062_root_operation_with_list.txt │ │ │ ├── 0063_extension_orphan.graphql │ │ │ ├── 0063_extension_orphan.txt │ │ │ ├── 0064_extension_wrong_type.graphql │ │ │ ├── 0064_extension_wrong_type.txt │ │ │ ├── 0065_subselection_of_enum.graphql │ │ │ ├── 0065_subselection_of_enum.txt │ │ │ ├── 0066_subselection_of_scalar.graphql │ │ │ ├── 0066_subselection_of_scalar.txt │ │ │ ├── 0067_subselection_of_interface.graphql │ │ │ ├── 0067_subselection_of_interface.txt │ │ │ ├── 0068_subselection_of_union.graphql │ │ │ ├── 0068_subselection_of_union.txt │ │ │ ├── 0069_subselection_of_object.graphql │ │ │ ├── 0069_subselection_of_object.txt │ │ │ ├── 0070_self_referential_directive_definition.graphql │ │ │ ├── 0070_self_referential_directive_definition.txt │ │ │ ├── 0074_merge_identical_fields.graphql │ │ │ ├── 0074_merge_identical_fields.txt │ │ │ ├── 0075_merge_conflicting_args.graphql │ │ │ ├── 0075_merge_conflicting_args.txt │ │ │ ├── 0076_merge_differing_responses.graphql │ │ │ ├── 0076_merge_differing_responses.txt │ │ │ ├── 0077_merge_conflict_deep.graphql │ │ │ ├── 0077_merge_conflict_deep.txt │ │ │ ├── 0078_merge_conflict_nested_fragments.graphql │ │ │ ├── 0078_merge_conflict_nested_fragments.txt │ │ │ ├── 0079_directive_is_unique.graphql │ │ │ ├── 0079_directive_is_unique.txt │ │ │ ├── 0080_directive_is_unique_with_extensions.graphql │ │ │ ├── 0080_directive_is_unique_with_extensions.txt │ │ │ ├── 0081_directive_is_unique_type_system.graphql │ │ │ ├── 0081_directive_is_unique_type_system.txt │ │ │ ├── 0082_introspection_types_in_mutation.graphql │ │ │ ├── 0082_introspection_types_in_mutation.txt │ │ │ ├── 0083_type_introspection_from_disallowed_type.graphql │ │ │ ├── 0083_type_introspection_from_disallowed_type.txt │ │ │ ├── 0084_circular_non_nullable_input_objects.graphql │ │ │ ├── 0084_circular_non_nullable_input_objects.txt │ │ │ ├── 0085_fragment_spread_target_defined.graphql │ │ │ ├── 0085_fragment_spread_target_defined.txt │ │ │ ├── 0086_unused_fragment.graphql │ │ │ ├── 0086_unused_fragment.txt │ │ │ ├── 0087_fragment_type_condition_on_composite_types.graphql │ │ │ ├── 0087_fragment_type_condition_on_composite_types.txt │ │ │ ├── 0088_fragment_selection_set.graphql │ │ │ ├── 0088_fragment_selection_set.txt │ │ │ ├── 0089_fragment_type_condition_on_non_existent_types.graphql │ │ │ ├── 0089_fragment_type_condition_on_non_existent_types.txt │ │ │ ├── 0090_fragment_spread_impossible.graphql │ │ │ ├── 0090_fragment_spread_impossible.txt │ │ │ ├── 0091_recursive_interface_definition.graphql │ │ │ ├── 0091_recursive_interface_definition.txt │ │ │ ├── 0092_recursive_fragment_spread.graphql │ │ │ ├── 0092_recursive_fragment_spread.txt │ │ │ ├── 0093_fragment_validation_with_recursive_type_system.graphql │ │ │ ├── 0093_fragment_validation_with_recursive_type_system.txt │ │ │ ├── 0094_object_type_extensions.graphql │ │ │ ├── 0094_object_type_extensions.txt │ │ │ ├── 0095_interface_implementation_declared_once.graphql │ │ │ ├── 0095_interface_implementation_declared_once.txt │ │ │ ├── 0096_schema_extensions.graphql │ │ │ ├── 0096_schema_extensions.txt │ │ │ ├── 0097_enum_extensions.graphql │ │ │ ├── 0097_enum_extensions.txt │ │ │ ├── 0098_interface_extensions.graphql │ │ │ ├── 0098_interface_extensions.txt │ │ │ ├── 0099_input_object_extensions.graphql │ │ │ ├── 0099_input_object_extensions.txt │ │ │ ├── 0100_union_extensions.graphql │ │ │ ├── 0100_union_extensions.txt │ │ │ ├── 0101_mismatched_variable_usage.graphql │ │ │ ├── 0101_mismatched_variable_usage.txt │ │ │ ├── 0102_invalid_string_values.graphql │ │ │ ├── 0102_invalid_string_values.txt │ │ │ ├── 0103_invalid_directive_on_input_value.graphql │ │ │ ├── 0103_invalid_directive_on_input_value.txt │ │ │ ├── 0104_invalid_type_in_arg.graphql │ │ │ ├── 0104_invalid_type_in_arg.txt │ │ │ ├── 0105_executable_definition_in_type_system_document.graphql │ │ │ ├── 0105_executable_definition_in_type_system_document.txt │ │ │ ├── 0106_type_system_definition_in_executable_document.graphql │ │ │ ├── 0106_type_system_definition_in_executable_document.txt │ │ │ ├── 0107_built_in_directive_double_redefinition.graphql │ │ │ ├── 0107_built_in_directive_double_redefinition.txt │ │ │ ├── 0108_implicit_schema_extension.graphql │ │ │ ├── 0108_implicit_schema_extension.txt │ │ │ ├── 0109_null_in_list_issue_738.graphql │ │ │ ├── 0109_null_in_list_issue_738.txt │ │ │ ├── 0110_list_usage_in_non_list_type.graphql │ │ │ ├── 0110_list_usage_in_non_list_type.txt │ │ │ ├── 0111_const_value.graphql │ │ │ ├── 0111_const_value.txt │ │ │ ├── 0112_anonymous_subscription_with_multiple_root_fields.graphql │ │ │ ├── 0112_anonymous_subscription_with_multiple_root_fields.txt │ │ │ ├── 0113_partially_overlapping_fragments.graphql │ │ │ ├── 0113_partially_overlapping_fragments.txt │ │ │ ├── 0114_interface_definition_with_missing_fields.graphql │ │ │ ├── 0114_interface_definition_with_missing_fields.txt │ │ │ ├── 0115_object_definition_with_missing_fields.graphql │ │ │ ├── 0115_object_definition_with_missing_fields.txt │ │ │ ├── 0116_enum_definition_with_missing_values.graphql │ │ │ ├── 0116_enum_definition_with_missing_values.txt │ │ │ ├── 0117_union_definition_with_missing_members.graphql │ │ │ ├── 0117_union_definition_with_missing_members.txt │ │ │ ├── 0118_input_object_definition_with_missing_values.graphql │ │ │ ├── 0118_input_object_definition_with_missing_values.txt │ │ │ ├── 0119_reserved_names.graphql │ │ │ ├── 0119_reserved_names.txt │ │ │ ├── 0120_conditional_subscriptions.graphql │ │ │ ├── 0120_conditional_subscriptions.txt │ │ │ ├── 0121_conditional_subscriptions_with_inline_fragment.graphql │ │ │ ├── 0121_conditional_subscriptions_with_inline_fragment.txt │ │ │ ├── 0122_conditional_subscriptions_with_named_fragment.graphql │ │ │ ├── 0122_conditional_subscriptions_with_named_fragment.txt │ │ │ ├── 0123_conditional_subscriptions_inside_inline_fragment.graphql │ │ │ ├── 0123_conditional_subscriptions_inside_inline_fragment.txt │ │ │ ├── 0124_conditional_subscriptions_inside_named_fragment.graphql │ │ │ └── 0124_conditional_subscriptions_inside_named_fragment.txt │ │ ├── introspection │ │ │ ├── introspect_full_schema.graphql │ │ │ └── response_full.json │ │ ├── ok │ │ │ ├── 0001_annonymous_operation_definition.graphql │ │ │ ├── 0001_annonymous_operation_definition.txt │ │ │ ├── 0002_multiple_named_operation_definitions.graphql │ │ │ ├── 0002_multiple_named_operation_definitions.txt │ │ │ ├── 0003_schema_definition_with_custom_operation_types.graphql │ │ │ ├── 0003_schema_definition_with_custom_operation_types.txt │ │ │ ├── 0004_schema_with_custom_scalars.graphql │ │ │ ├── 0004_schema_with_custom_scalars.txt │ │ │ ├── 0005_schema_with_valid_enum_definitions.graphql │ │ │ ├── 0005_schema_with_valid_enum_definitions.txt │ │ │ ├── 0006_schema_with_valid_union.graphql │ │ │ ├── 0006_schema_with_valid_union.txt │ │ │ ├── 0007_schema_with_interface_definition.graphql │ │ │ ├── 0007_schema_with_interface_definition.txt │ │ │ ├── 0008_schema_with_directive_definition.graphql │ │ │ ├── 0008_schema_with_directive_definition.txt │ │ │ ├── 0009_schema_with_input_object.graphql │ │ │ ├── 0009_schema_with_input_object.txt │ │ │ ├── 0010_operation_with_defined_fields.graphql │ │ │ ├── 0010_operation_with_defined_fields.txt │ │ │ ├── 0011_fragment_spreads_in_fragment_definitions.graphql │ │ │ ├── 0011_fragment_spreads_in_fragment_definitions.txt │ │ │ ├── 0012_introspection_query.graphql │ │ │ ├── 0012_introspection_query.txt │ │ │ ├── 0013_operation_with_used_variable_in_fragment.graphql │ │ │ ├── 0013_operation_with_used_variable_in_fragment.txt │ │ │ ├── 0014_float_values.graphql │ │ │ ├── 0014_float_values.txt │ │ │ ├── 0015_supergraph.graphql │ │ │ ├── 0015_supergraph.txt │ │ │ ├── 0016_same_variables_in_multiple_operations.graphql │ │ │ ├── 0016_same_variables_in_multiple_operations.txt │ │ │ ├── 0017_variables_are_input_types.graphql │ │ │ ├── 0017_variables_are_input_types.txt │ │ │ ├── 0018_non_clashing_names.graphql │ │ │ ├── 0018_non_clashing_names.txt │ │ │ ├── 0019_extensions.graphql │ │ │ ├── 0019_extensions.txt │ │ │ ├── 0020_merge_identical_fields.graphql │ │ │ ├── 0020_merge_identical_fields.txt │ │ │ ├── 0021_merge_identical_fields_with_arguments.graphql │ │ │ ├── 0021_merge_identical_fields_with_arguments.txt │ │ │ ├── 0022_merge_differing_fields_and_args.graphql │ │ │ ├── 0022_merge_differing_fields_and_args.txt │ │ │ ├── 0024_used_variables_in_directives.graphql │ │ │ ├── 0024_used_variables_in_directives.txt │ │ │ ├── 0025_unique_directives.graphql │ │ │ ├── 0025_unique_directives.txt │ │ │ ├── 0026_type_introspection.graphql │ │ │ ├── 0026_type_introspection.txt │ │ │ ├── 0027_typename_introspection.txt │ │ │ ├── 0027_typename_introspection_in_object.graphql │ │ │ ├── 0027_typename_introspection_in_object.txt │ │ │ ├── 0028_typename_introspection_in_union.graphql │ │ │ ├── 0028_typename_introspection_in_union.txt │ │ │ ├── 0029_used_variable_in_list_and_input.graphql │ │ │ ├── 0029_used_variable_in_list_and_input.txt │ │ │ ├── 0030_cyclical_nullable_input_objects.graphql │ │ │ ├── 0030_cyclical_nullable_input_objects.txt │ │ │ ├── 0031_fragment_spread_possible.graphql │ │ │ ├── 0031_fragment_spread_possible.txt │ │ │ ├── 0032_valid_of_correct_type.graphql │ │ │ ├── 0032_valid_of_correct_type.txt │ │ │ ├── 0033_valid_variable_usage.graphql │ │ │ ├── 0033_valid_variable_usage.txt │ │ │ ├── 0034_built_in_directive_redefinition.graphql │ │ │ ├── 0034_built_in_directive_redefinition.txt │ │ │ ├── 0035_implicit_schema_definition_with_query_type.graphql │ │ │ ├── 0035_implicit_schema_definition_with_query_type.txt │ │ │ ├── 0036_implicit_schema_definition_with_several_default_types.graphql │ │ │ ├── 0036_implicit_schema_definition_with_several_default_types.txt │ │ │ ├── 0037_implicit_schema_extension_with_directive.graphql │ │ │ ├── 0037_implicit_schema_extension_with_directive.txt │ │ │ ├── 0038_argument_default.graphql │ │ │ ├── 0038_argument_default.txt │ │ │ ├── 0039_string_literals.graphql │ │ │ ├── 0039_string_literals.txt │ │ │ ├── 0040_field_merging_issue_755.graphql │ │ │ ├── 0040_field_merging_issue_755.txt │ │ │ ├── 0041_unquoted_string_for_custom_scalar.graphql │ │ │ ├── 0041_unquoted_string_for_custom_scalar.txt │ │ │ ├── 0042_used_variable_in_operation_directive.graphql │ │ │ ├── 0042_used_variable_in_operation_directive.txt │ │ │ ├── 0115_interface_definition_with_extension_defines_field.graphql │ │ │ ├── 0115_interface_definition_with_extension_defines_field.txt │ │ │ ├── 0116_interface_without_implementations.graphql │ │ │ ├── 0116_interface_without_implementations.txt │ │ │ ├── 0117_subscription_conditions_not_at_root.graphql │ │ │ ├── 0117_subscription_conditions_not_at_root.txt │ │ │ ├── 0118_directive_with_nested_input_types.graphql │ │ │ ├── 0118_directive_with_nested_input_types.txt │ │ │ ├── 0119_directive_with_argument_type_collisions.graphql │ │ │ └── 0119_directive_with_argument_type_collisions.txt │ │ └── serializer │ │ │ ├── diagnostics │ │ │ ├── 0001_duplicate_operatoin_names.graphql │ │ │ ├── 0002_multiple_anonymous_operations.graphql │ │ │ ├── 0003_anonymous_and_named_operation.graphql │ │ │ ├── 0004_subscription_with_multiple_root_fields.graphql │ │ │ ├── 0005_subscription_with_multiple_root_fields_in_fragment_spreads.graphql │ │ │ ├── 0006_subscription_with_multiple_root_fields_in_inline_fragments.graphql │ │ │ ├── 0007_operation_with_undefined_variables.graphql │ │ │ ├── 0008_operation_with_undefined_variables_in_inline_fragment.graphql │ │ │ ├── 0009_operation_with_undefined_variables_in_fragment.graphql │ │ │ ├── 0010_operation_with_unused_variable.graphql │ │ │ ├── 0011_syntactic_errors_from_parser.graphql │ │ │ ├── 0012_schema_definition_with_missing_query_operation_type.graphql │ │ │ ├── 0013_schema_definition_with_duplicate_root_type_operations.graphql │ │ │ ├── 0014_subscription_operation_without_subscription_schema_operation_type.graphql │ │ │ ├── 0015_mutation_operation_without_mutation_schema_definition.graphql │ │ │ ├── 0016_schema_with_built_in_scalar_definition.graphql │ │ │ ├── 0017_schema_with_unspecified_scalar.graphql │ │ │ ├── 0018_schema_with_specified_scalar_missing_values.graphql │ │ │ ├── 0019_enum_definition_with_duplicate_values.graphql │ │ │ ├── 0020_enum_values_with_uncapitalised_values.graphql │ │ │ ├── 0021_union_definition_with_duplicate_members.graphql │ │ │ ├── 0022_duplicate_interface_definitions.graphql │ │ │ ├── 0023_interface_definition_with_cyclic_implements_interfaces.graphql │ │ │ ├── 0024_interface_definition_with_duplicate_fields.graphql │ │ │ ├── 0025_interface_definition_with_missing_transitive_fields.graphql │ │ │ ├── 0026_interface_definition_with_missing_implemetns_interface.graphql │ │ │ ├── 0027_interface_definition_with_undefined_implements_interface.graphql │ │ │ ├── 0028_interface_definition_with_missing_fields_implements_intrefaces_undefined_interfaces.graphql │ │ │ ├── 0029_directive_definitions_with_duplicate_names.graphql │ │ │ ├── 0030_schema_with_duplicate_input_objects.graphql │ │ │ ├── 0031_input_object_with_duplicate_fields.graphql │ │ │ ├── 0032_duplicate_object_type_definition.graphql │ │ │ ├── 0033_object_type_definition_with_duplicate_fields.graphql │ │ │ ├── 0034_object_type_definition_with_missing_transitive_fields.graphql │ │ │ ├── 0035_object_type_definition_with_missing_implements_interfaces_definition.graphql │ │ │ ├── 0036_object_type_with_non_output_field_types.graphql │ │ │ ├── 0037_interface_with_non_output_fields.graphql │ │ │ ├── 0038_object_type_with_undefined_field_type.graphql │ │ │ ├── 0039_interface_with_undefined_field_type.graphql │ │ │ ├── 0040_operation_with_undefined_fields_on_reference_type.graphql │ │ │ ├── 0041_subscription_operation_with_undefined_fields.graphql │ │ │ ├── 0042_mutation_operation_with_undefined_fields.graphql │ │ │ ├── 0043_undefined_union_member.graphql │ │ │ ├── 0044_union_member_not_of_object_type.graphql │ │ │ ├── 0045_operation_with_unused_variable_in_fragment.graphql │ │ │ ├── 0046_duplicate_directive_arguments.graphql │ │ │ ├── 0047_duplicate_field_arguments.graphql │ │ │ ├── 0048_duplicate_field_argument_definition_names.graphql │ │ │ ├── 0049_duplicate_directive_argument_definition_names.graphql │ │ │ ├── 0050_directives_in_invalid_locations.graphql │ │ │ ├── 0051_subscription_operation_with_root_introspection_field.graphql │ │ │ ├── 0052_undefined_directive.graphql │ │ │ ├── 0053_argument_name_is_not_defined.graphql │ │ │ ├── 0054_argument_not_provided.graphql │ │ │ ├── 0055_duplicate_variable_definitions.graphql │ │ │ ├── 0056_variables_are_input_types.graphql │ │ │ ├── 0057_duplicate_type_names.graphql │ │ │ ├── 0058_fragment_definitions_with_duplicate_names.graphql │ │ │ ├── 0059_root_operation_object_type.graphql │ │ │ ├── 0060_root_operation_definition_undefined_operation_type.graphql │ │ │ ├── 0061_root_operation_with_default_undefined_query.graphql │ │ │ ├── 0062_root_operation_with_list.graphql │ │ │ ├── 0063_extension_orphan.graphql │ │ │ ├── 0064_extension_wrong_type.graphql │ │ │ ├── 0065_subselection_of_enum.graphql │ │ │ ├── 0066_subselection_of_scalar.graphql │ │ │ ├── 0067_subselection_of_interface.graphql │ │ │ ├── 0068_subselection_of_union.graphql │ │ │ ├── 0069_subselection_of_object.graphql │ │ │ ├── 0070_self_referential_directive_definition.graphql │ │ │ ├── 0074_merge_identical_fields.graphql │ │ │ ├── 0075_merge_conflicting_args.graphql │ │ │ ├── 0076_merge_differing_responses.graphql │ │ │ ├── 0077_merge_conflict_deep.graphql │ │ │ ├── 0078_merge_conflict_nested_fragments.graphql │ │ │ ├── 0079_directive_is_unique.graphql │ │ │ ├── 0080_directive_is_unique_with_extensions.graphql │ │ │ ├── 0081_directive_is_unique_type_system.graphql │ │ │ ├── 0082_introspection_types_in_mutation.graphql │ │ │ ├── 0083_type_introspection_from_disallowed_type.graphql │ │ │ ├── 0084_circular_non_nullable_input_objects.graphql │ │ │ ├── 0085_fragment_spread_target_defined.graphql │ │ │ ├── 0086_unused_fragment.graphql │ │ │ ├── 0087_fragment_type_condition_on_composite_types.graphql │ │ │ ├── 0088_fragment_selection_set.graphql │ │ │ ├── 0089_fragment_type_condition_on_non_existent_types.graphql │ │ │ ├── 0090_fragment_spread_impossible.graphql │ │ │ ├── 0091_recursive_interface_definition.graphql │ │ │ ├── 0092_recursive_fragment_spread.graphql │ │ │ ├── 0093_fragment_validation_with_recursive_type_system.graphql │ │ │ ├── 0094_object_type_extensions.graphql │ │ │ ├── 0095_interface_implementation_declared_once.graphql │ │ │ ├── 0096_schema_extensions.graphql │ │ │ ├── 0097_enum_extensions.graphql │ │ │ ├── 0098_interface_extensions.graphql │ │ │ ├── 0099_input_object_extensions.graphql │ │ │ ├── 0100_union_extensions.graphql │ │ │ ├── 0101_mismatched_variable_usage.graphql │ │ │ ├── 0102_invalid_string_values.graphql │ │ │ ├── 0103_invalid_directive_on_input_value.graphql │ │ │ ├── 0103_invalid_type_in_arg.graphql │ │ │ ├── 0104_invalid_type_in_arg.graphql │ │ │ ├── 0105_executable_definition_in_type_system_document.graphql │ │ │ ├── 0106_type_system_definition_in_executable_document.graphql │ │ │ ├── 0107_built_in_directive_double_redefinition.graphql │ │ │ ├── 0108_implicit_schema_extension.graphql │ │ │ ├── 0109_null_in_list_issue_738.graphql │ │ │ ├── 0110_list_usage_in_non_list_type.graphql │ │ │ ├── 0111_const_value.graphql │ │ │ ├── 0112_anonymous_subscription_with_multiple_root_fields.graphql │ │ │ ├── 0113_partially_overlapping_fragments.graphql │ │ │ ├── 0114_interface_definition_with_missing_fields.graphql │ │ │ ├── 0115_object_definition_with_missing_fields.graphql │ │ │ ├── 0116_enum_definition_with_missing_values.graphql │ │ │ ├── 0117_union_definition_with_missing_members.graphql │ │ │ ├── 0118_input_object_definition_with_missing_values.graphql │ │ │ ├── 0119_reserved_named.graphql │ │ │ ├── 0119_reserved_names.graphql │ │ │ ├── 0120_conditional_subscriptions.graphql │ │ │ ├── 0121_conditional_subscriptions_with_inline_fragment.graphql │ │ │ ├── 0121_conditional_subscriptions_with_inline_fragments.graphql │ │ │ ├── 0122_conditional_subscriptions_with_named_fragment.graphql │ │ │ ├── 0123_conditional_subscriptions_inside_inline_fragment.graphql │ │ │ └── 0124_conditional_subscriptions_inside_named_fragment.graphql │ │ │ └── ok │ │ │ ├── 0001_annonymous_operation_definition.graphql │ │ │ ├── 0002_multiple_named_operation_definitions.graphql │ │ │ ├── 0003_schema_definition_with_custom_operation_types.graphql │ │ │ ├── 0004_schema_with_custom_scalars.graphql │ │ │ ├── 0005_schema_with_valid_enum_definitions.graphql │ │ │ ├── 0006_schema_with_valid_union.graphql │ │ │ ├── 0007_schema_with_interface_definition.graphql │ │ │ ├── 0008_schema_with_directive_definition.graphql │ │ │ ├── 0009_schema_with_input_object.graphql │ │ │ ├── 0010_operation_with_defined_fields.graphql │ │ │ ├── 0011_fragment_spreads_in_fragment_definitions.graphql │ │ │ ├── 0012_introspection_query.graphql │ │ │ ├── 0013_operation_with_used_variable_in_fragment.graphql │ │ │ ├── 0014_float_values.graphql │ │ │ ├── 0015_supergraph.graphql │ │ │ ├── 0016_same_variables_in_multiple_operations.graphql │ │ │ ├── 0017_variables_are_input_types.graphql │ │ │ ├── 0018_non_clashing_names.graphql │ │ │ ├── 0019_extensions.graphql │ │ │ ├── 0020_merge_identical_fields.graphql │ │ │ ├── 0021_merge_identical_fields_with_arguments.graphql │ │ │ ├── 0022_merge_differing_fields_and_args.graphql │ │ │ ├── 0024_used_variables_in_directives.graphql │ │ │ ├── 0025_unique_directives.graphql │ │ │ ├── 0026_type_introspection.graphql │ │ │ ├── 0027_typename_introspection_in_object.graphql │ │ │ ├── 0028_typename_introspection_in_union.graphql │ │ │ ├── 0029_used_variable_in_list_and_input.graphql │ │ │ ├── 0030_cyclical_nullable_input_objects.graphql │ │ │ ├── 0031_fragment_spread_possible.graphql │ │ │ ├── 0032_valid_of_correct_type.graphql │ │ │ ├── 0033_valid_variable_usage.graphql │ │ │ ├── 0034_built_in_directive_redefinition.graphql │ │ │ ├── 0035_implicit_schema_definition_with_query_type.graphql │ │ │ ├── 0036_implicit_schema_definition_with_several_default_types.graphql │ │ │ ├── 0037_implicit_schema_extension_with_directive.graphql │ │ │ ├── 0038_argument_default.graphql │ │ │ ├── 0039_string_literals.graphql │ │ │ ├── 0040_field_merging_issue_755.graphql │ │ │ ├── 0041_unquoted_string_for_custom_scalar.graphql │ │ │ ├── 0042_used_variable_in_operation_directive.graphql │ │ │ ├── 0115_interface_definition_with_extension_defines_field.graphql │ │ │ ├── 0116_interface_without_implementations.graphql │ │ │ ├── 0117_subscription_conditions_not_at_root.graphql │ │ │ ├── 0118_directive_with_nested_input_types.graphql │ │ │ └── 0119_directive_with_argument_type_collisions.graphql │ └── tests │ │ ├── error_formatting.rs │ │ ├── executable.rs │ │ ├── extensions.rs │ │ ├── field_set.rs │ │ ├── field_type.rs │ │ ├── introspection.rs │ │ ├── introspection_max_depth.rs │ │ ├── locations.rs │ │ ├── main.rs │ │ ├── merge_schemas.rs │ │ ├── misc.rs │ │ ├── name.rs │ │ ├── parser.rs │ │ ├── schema.rs │ │ ├── serde.rs │ │ ├── snapshot_tests.rs │ │ └── validation │ │ ├── field_merging.rs │ │ ├── ignore_builtin_redefinition.rs │ │ ├── interface.rs │ │ ├── mod.rs │ │ ├── object.rs │ │ ├── operation.rs │ │ ├── recursion.rs │ │ ├── types.rs │ │ └── variable.rs ├── apollo-parser │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── benches │ │ ├── query.rs │ │ ├── supergraph.rs │ │ └── testdata │ │ │ └── alias.graphql │ ├── examples │ │ ├── annotate_snippet.rs │ │ ├── ariadne.rs │ │ ├── graph_check_mutation.graphql │ │ ├── schema.graphql │ │ ├── schema_with_errors.graphql │ │ └── unused_vars.rs │ ├── screenshots │ │ └── apollo_parser_error.png │ ├── src │ │ ├── cst │ │ │ ├── generated │ │ │ │ ├── mod.rs │ │ │ │ └── nodes.rs │ │ │ ├── mod.rs │ │ │ └── node_ext.rs │ │ ├── error.rs │ │ ├── lexer │ │ │ ├── cursor.rs │ │ │ ├── lookup.rs │ │ │ ├── mod.rs │ │ │ ├── token.rs │ │ │ └── token_kind.rs │ │ ├── lib.rs │ │ ├── limit.rs │ │ ├── parser │ │ │ ├── generated │ │ │ │ ├── mod.rs │ │ │ │ └── syntax_kind.rs │ │ │ ├── grammar │ │ │ │ ├── argument.rs │ │ │ │ ├── description.rs │ │ │ │ ├── directive.rs │ │ │ │ ├── document.rs │ │ │ │ ├── enum_.rs │ │ │ │ ├── extensions.rs │ │ │ │ ├── field.rs │ │ │ │ ├── fragment.rs │ │ │ │ ├── input.rs │ │ │ │ ├── interface.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── name.rs │ │ │ │ ├── object.rs │ │ │ │ ├── operation.rs │ │ │ │ ├── scalar.rs │ │ │ │ ├── schema.rs │ │ │ │ ├── selection.rs │ │ │ │ ├── ty.rs │ │ │ │ ├── union_.rs │ │ │ │ ├── value.rs │ │ │ │ └── variable.rs │ │ │ ├── language.rs │ │ │ ├── mod.rs │ │ │ ├── syntax_tree.rs │ │ │ └── token_text.rs │ │ └── tests.rs │ └── test_data │ │ ├── lexer │ │ ├── err │ │ │ ├── 0001_unterminated_spread_operator_with_one.graphql │ │ │ ├── 0001_unterminated_spread_operator_with_one.txt │ │ │ ├── 0002_unterminated_spread_operator_with_2.graphql │ │ │ ├── 0002_unterminated_spread_operator_with_2.txt │ │ │ ├── 0003_float_with_incorrect_decimal_point.graphql │ │ │ ├── 0003_float_with_incorrect_decimal_point.txt │ │ │ ├── 0004_unterminated_string_value.graphql │ │ │ ├── 0004_unterminated_string_value.txt │ │ │ ├── 0005_escaped_char.graphql │ │ │ ├── 0005_escaped_char.txt │ │ │ ├── 0006_unterminated_string_value_in_list_value_argument.graphql │ │ │ ├── 0006_unterminated_string_value_in_list_value_argument.txt │ │ │ ├── 0007_unterminated_string_value_in_object_value_argument.graphql │ │ │ ├── 0007_unterminated_string_value_in_object_value_argument.txt │ │ │ ├── 0008_unterminated_string_value.graphql │ │ │ ├── 0008_unterminated_string_value.txt │ │ │ ├── 0009_unterminated_string_value_as_default.graphql │ │ │ ├── 0009_unterminated_string_value_as_default.txt │ │ │ ├── 0010_unterminated_string_value_with_unicode.graphql │ │ │ ├── 0010_unterminated_string_value_with_unicode.txt │ │ │ ├── 0011_unterminated_string_value_with_unicode_and_escaped_characters.graphql │ │ │ ├── 0011_unterminated_string_value_with_unicode_and_escaped_characters.txt │ │ │ ├── 0012_string_value_with_line_terminators.graphql │ │ │ ├── 0012_string_value_with_line_terminators.txt │ │ │ ├── 0013_string_with_invalid_escapes.graphql │ │ │ ├── 0013_string_with_invalid_escapes.txt │ │ │ ├── 0014_plus_sign.graphql │ │ │ ├── 0014_plus_sign.txt │ │ │ ├── 0015_minus_sign.graphql │ │ │ ├── 0015_minus_sign.txt │ │ │ ├── 0016_leading_zero.graphql │ │ │ ├── 0016_leading_zero.txt │ │ │ ├── 0017_number_lookahead.graphql │ │ │ ├── 0017_number_lookahead.txt │ │ │ ├── 0018_eof_float_1.graphql │ │ │ ├── 0018_eof_float_1.txt │ │ │ ├── 0019_eof_float_2.graphql │ │ │ ├── 0019_eof_float_2.txt │ │ │ ├── 0020_eof_float_3.graphql │ │ │ ├── 0020_eof_float_3.txt │ │ │ ├── 0021_eof_float_4.graphql │ │ │ ├── 0021_eof_float_4.txt │ │ │ ├── 0022_eof_string_1.graphql │ │ │ ├── 0022_eof_string_1.txt │ │ │ ├── 0023_eof_string_1.graphql │ │ │ ├── 0023_eof_string_1.txt │ │ │ ├── 0024_eof_string_2.graphql │ │ │ ├── 0024_eof_string_2.txt │ │ │ ├── 0025_eof_string_3.graphql │ │ │ ├── 0025_eof_string_3.txt │ │ │ ├── 0026_eof_block_string_1.graphql │ │ │ ├── 0026_eof_block_string_1.txt │ │ │ ├── 0027_eof_block_string_2.graphql │ │ │ ├── 0027_eof_block_string_2.txt │ │ │ ├── 0029_not_whitespace.graphql │ │ │ ├── 0029_not_whitespace.py │ │ │ ├── 0029_not_whitespace.txt │ │ │ ├── 0030_escaped_surrogate.graphql │ │ │ └── 0030_escaped_surrogate.txt │ │ └── ok │ │ │ ├── 0001_hello.graphql │ │ │ ├── 0001_hello.txt │ │ │ ├── 0002_whitespace.graphql │ │ │ ├── 0002_whitespace.txt │ │ │ ├── 0003_name.graphql │ │ │ ├── 0003_name.txt │ │ │ ├── 0004_string_value.graphql │ │ │ ├── 0004_string_value.txt │ │ │ ├── 0005_int.graphql │ │ │ ├── 0005_int.txt │ │ │ ├── 0006_float.graphql │ │ │ ├── 0006_float.txt │ │ │ ├── 0007_symbols.graphql │ │ │ ├── 0007_symbols.txt │ │ │ ├── 0008_block_string.graphql │ │ │ ├── 0008_block_string.txt │ │ │ ├── 0009_block_string_character_with_loose_quotations.graphql │ │ │ ├── 0009_block_string_character_with_loose_quotations.txt │ │ │ ├── 0010_empty_string_value_followed_by_eof.graphql │ │ │ ├── 0010_empty_string_value_followed_by_eof.txt │ │ │ ├── 0011_escaped_char.graphql │ │ │ ├── 0011_escaped_char.txt │ │ │ ├── 0012_unicode_char.graphql │ │ │ ├── 0012_unicode_char.txt │ │ │ ├── 0013_emoji_char_in_string_value.graphql │ │ │ └── 0013_emoji_char_in_string_value.txt │ │ └── parser │ │ ├── err │ │ ├── 0001_directive_definition_missing_location.graphql │ │ ├── 0001_directive_definition_missing_location.txt │ │ ├── 0002_enum_definition_with_missing_name.graphql │ │ ├── 0002_enum_definition_with_missing_name.txt │ │ ├── 0003_enum_definition_with_missing_values.graphql │ │ ├── 0003_enum_definition_with_missing_values.txt │ │ ├── 0004_enum_definition_with_missing_curly.graphql │ │ ├── 0004_enum_definition_with_missing_curly.txt │ │ ├── 0005_enum_extension_with_missing_name.graphql │ │ ├── 0005_enum_extension_with_missing_name.txt │ │ ├── 0006_enum_extension_with_missing_requirements.graphql │ │ ├── 0006_enum_extension_with_missing_requirements.txt │ │ ├── 0007_fragment_definition_with_invalid_fragment_name.graphql │ │ ├── 0007_fragment_definition_with_invalid_fragment_name.txt │ │ ├── 0008_fragment_definition_with_invalid_type_condition.graphql │ │ ├── 0008_fragment_definition_with_invalid_type_condition.txt │ │ ├── 0009_fragment_definition_with_invalid_selection_set.graphql │ │ ├── 0009_fragment_definition_with_invalid_selection_set.txt │ │ ├── 0010_input_definition_with_missing_name.graphql │ │ ├── 0010_input_definition_with_missing_name.txt │ │ ├── 0011_input_definition_with_missing_input_values.graphql │ │ ├── 0011_input_definition_with_missing_input_values.txt │ │ ├── 0012_input_extension_with_missing_name.graphql │ │ ├── 0012_input_extension_with_missing_name.txt │ │ ├── 0013_input_extension_with_missing_requirements.graphql │ │ ├── 0013_input_extension_with_missing_requirements.txt │ │ ├── 0014_interface_extension_with_missing_name.graphql │ │ ├── 0014_interface_extension_with_missing_name.txt │ │ ├── 0015_interface_extension_with_missing_requirements.graphql │ │ ├── 0015_interface_extension_with_missing_requirements.txt │ │ ├── 0016_object_type_extension_with_missing_name.graphql │ │ ├── 0016_object_type_extension_with_missing_name.txt │ │ ├── 0017_object_type_extension_with_missing_requirements.graphql │ │ ├── 0017_object_type_extension_with_missing_requirements.txt │ │ ├── 0018_scalar_definition_with_missing_name.graphql │ │ ├── 0018_scalar_definition_with_missing_name.txt │ │ ├── 0019_scalar_extension_with_missing_name.graphql │ │ ├── 0019_scalar_extension_with_missing_name.txt │ │ ├── 0020_union_definition_with_missing_name.graphql │ │ ├── 0020_union_definition_with_missing_name.txt │ │ ├── 0021_union_definition_with_missing_union_members.graphql │ │ ├── 0021_union_definition_with_missing_union_members.txt │ │ ├── 0022_union_extension_with_missing_name.graphql │ │ ├── 0022_union_extension_with_missing_name.txt │ │ ├── 0023_union_extension_with_missing_requirements.graphql │ │ ├── 0023_union_extension_with_missing_requirements.txt │ │ ├── 0024_document_with_incorrect_definition.graphql │ │ ├── 0024_document_with_incorrect_definition.txt │ │ ├── 0025_document_with_incorrect_definition_and_selection_set.graphql │ │ ├── 0025_document_with_incorrect_definition_and_selection_set.txt │ │ ├── 0026_invalid_definition_squished_between_two_valid_definitions.graphql │ │ ├── 0026_invalid_definition_squished_between_two_valid_definitions.txt │ │ ├── 0027_invalid_type_system_extension.graphql │ │ ├── 0027_invalid_type_system_extension.txt │ │ ├── 0028_invalid_type_system_extension_followed_by_valid.graphql │ │ ├── 0028_invalid_type_system_extension_followed_by_valid.txt │ │ ├── 0029_operation_definition_with_empty_selection_set.graphql │ │ ├── 0029_operation_definition_with_empty_selection_set.txt │ │ ├── 0030_operation_definition_with_description.graphql │ │ ├── 0030_operation_definition_with_description.txt │ │ ├── 0031_argument_with_erronous_string_value.graphql │ │ ├── 0031_argument_with_erronous_string_value.txt │ │ ├── 0032_input_value_with_erronous_string_value.graphql │ │ ├── 0032_input_value_with_erronous_string_value.txt │ │ ├── 0033_directive_with_erronous_string_value.graphql │ │ ├── 0033_directive_with_erronous_string_value.txt │ │ ├── 0034_unterminated_string_value_in_list.graphql │ │ ├── 0034_unterminated_string_value_in_list.txt │ │ ├── 0035_unterminated_string_value_in_object_value.graphql │ │ ├── 0035_unterminated_string_value_in_object_value.txt │ │ ├── 0036_unterminated_string_in_default_value.graphql │ │ ├── 0036_unterminated_string_in_default_value.txt │ │ ├── 0040_operation_definition_missing_selection_set.graphql │ │ ├── 0040_operation_definition_missing_selection_set.txt │ │ ├── 0041_operation_definition_with_missing_selection_set.graphql │ │ ├── 0041_operation_definition_with_missing_selection_set.txt │ │ ├── 0042_document_with_incorrect_token.graphql │ │ ├── 0042_document_with_incorrect_token.txt │ │ ├── 0043_type_with_trailing_garbage.graphql │ │ ├── 0043_type_with_trailing_garbage.txt │ │ ├── 0044_list_type_with_no_type.graphql │ │ ├── 0044_list_type_with_no_type.txt │ │ ├── 0045_ignored_token_spans.graphql │ │ ├── 0045_ignored_token_spans.txt │ │ ├── 0046_incomplete_spreads.graphql │ │ ├── 0046_incomplete_spreads.txt │ │ ├── 0047_empty_variable_definition.graphql │ │ ├── 0047_empty_variable_definition.txt │ │ ├── 0048_unbalanced_list_type_1.graphql │ │ ├── 0048_unbalanced_list_type_1.txt │ │ ├── 0049_unbalanced_list_type_2.graphql │ │ ├── 0049_unbalanced_list_type_2.txt │ │ ├── 0050_invalid_implements_list.graphql │ │ ├── 0050_invalid_implements_list.txt │ │ ├── 0051_union_with_invalid_members_list.graphql │ │ ├── 0051_union_with_invalid_members_list.txt │ │ ├── 0052_const_value.graphql │ │ ├── 0052_const_value.txt │ │ ├── 0053_on_without_type_condition.graphql │ │ ├── 0053_on_without_type_condition.txt │ │ ├── 0054_root_operation_type_with_extra_brackets.graphql │ │ ├── 0054_root_operation_type_with_extra_brackets.txt │ │ ├── 0055_object_definition_with_missing_name.graphql │ │ ├── 0055_object_definition_with_missing_name.txt │ │ ├── 0056_object_definition_with_missing_curly.graphql │ │ ├── 0056_object_definition_with_missing_curly.txt │ │ ├── 0057_object_definition_with_missing_fields.graphql │ │ ├── 0057_object_definition_with_missing_fields.txt │ │ ├── 0058_interface_definition_with_missing_name.graphql │ │ ├── 0058_interface_definition_with_missing_name.txt │ │ ├── 0059_interface_definition_with_missing_fields.graphql │ │ ├── 0059_interface_definition_with_missing_fields.txt │ │ ├── 0060_interface_definition_with_missing_curly.graphql │ │ ├── 0060_interface_definition_with_missing_curly.txt │ │ ├── 0061_empty.graphql │ │ └── 0061_empty.txt │ │ └── ok │ │ ├── 0001_input_type_definition_without_input_values.graphql │ │ ├── 0001_input_type_definition_without_input_values.txt │ │ ├── 0002_selection_simple.graphql │ │ ├── 0002_selection_simple.txt │ │ ├── 0003_selection_with_fields.graphql │ │ ├── 0003_selection_with_fields.txt │ │ ├── 0004_selection_with_fields_aliases_arguments.graphql │ │ ├── 0004_selection_with_fields_aliases_arguments.txt │ │ ├── 0005_selection_with_inline_fragments.graphql │ │ ├── 0005_selection_with_inline_fragments.txt │ │ ├── 0006_selection_with_fragment_spread.graphql │ │ ├── 0006_selection_with_fragment_spread.txt │ │ ├── 0007_directive_definition.graphql │ │ ├── 0007_directive_definition.txt │ │ ├── 0008_directive_definition_with_arguments.graphql │ │ ├── 0008_directive_definition_with_arguments.txt │ │ ├── 0009_directive_definition_repeatable.graphql │ │ ├── 0009_directive_definition_repeatable.txt │ │ ├── 0010_enum_type_definition.graphql │ │ ├── 0010_enum_type_definition.txt │ │ ├── 0011_enum_type_extension.graphql │ │ ├── 0011_enum_type_extension.txt │ │ ├── 0012_fragment_definition.graphql │ │ ├── 0012_fragment_definition.txt │ │ ├── 0013_fragment_definition_with_fragment_spread.graphql │ │ ├── 0013_fragment_definition_with_fragment_spread.txt │ │ ├── 0014_input_definition.graphql │ │ ├── 0014_input_definition.txt │ │ ├── 0015_input_extension.graphql │ │ ├── 0015_input_extension.txt │ │ ├── 0016_interface_definition.graphql │ │ ├── 0016_interface_definition.txt │ │ ├── 0017_interface_extension.graphql │ │ ├── 0017_interface_extension.txt │ │ ├── 0018_object_type_definition.graphql │ │ ├── 0018_object_type_definition.txt │ │ ├── 0019_object_type_extension.graphql │ │ ├── 0019_object_type_extension.txt │ │ ├── 0020_operation_type_definition.graphql │ │ ├── 0020_operation_type_definition.txt │ │ ├── 0021_operation_type_definition_with_arguments.graphql │ │ ├── 0021_operation_type_definition_with_arguments.txt │ │ ├── 0022_operation_type_definition_with_arguments_and_directives.graphql │ │ ├── 0022_operation_type_definition_with_arguments_and_directives.txt │ │ ├── 0023_scalar_definition.graphql │ │ ├── 0023_scalar_definition.txt │ │ ├── 0024_scalar_extension.graphql │ │ ├── 0024_scalar_extension.txt │ │ ├── 0025_schema_definition.graphql │ │ ├── 0025_schema_definition.txt │ │ ├── 0026_schema_extension.graphql │ │ ├── 0026_schema_extension.txt │ │ ├── 0027_union_type_definition.graphql │ │ ├── 0027_union_type_definition.txt │ │ ├── 0028_union_type_definition_followed_by_object_definition.graphql │ │ ├── 0028_union_type_definition_followed_by_object_definition.txt │ │ ├── 0029_union_type_extension.graphql │ │ ├── 0029_union_type_extension.txt │ │ ├── 0030_values.graphql │ │ ├── 0030_values.txt │ │ ├── 0031_variables_with_default.graphql │ │ ├── 0031_variables_with_default.txt │ │ ├── 0032_supergraph.graphql │ │ ├── 0032_supergraph.txt │ │ ├── 0033_directive_on_argument_definition.graphql │ │ ├── 0033_directive_on_argument_definition.txt │ │ ├── 0034_query_shorthand_followed_by_fragment_definition.graphql │ │ ├── 0034_query_shorthand_followed_by_fragment_definition.txt │ │ ├── 0035_query_with_variables.graphql │ │ ├── 0035_query_with_variables.txt │ │ ├── 0036_parses_variable_definition_with_list_type.graphql │ │ ├── 0036_parses_variable_definition_with_list_type.txt │ │ ├── 0037_operation_type_definition_with_inline_fragment.graphql │ │ ├── 0037_operation_type_definition_with_inline_fragment.txt │ │ ├── 0038_wrapped_named_types.graphql │ │ ├── 0038_wrapped_named_types.txt │ │ ├── 0039_variable_with_directives.graphql │ │ ├── 0039_variable_with_directives.txt │ │ ├── 0040_type_token_order.graphql │ │ ├── 0040_type_token_order.txt │ │ ├── 0041_implements_list.graphql │ │ ├── 0041_implements_list.txt │ │ ├── 0042_object_type_definition_without_fields.graphql │ │ ├── 0042_object_type_definition_without_fields.txt │ │ ├── 0043_interface_type_definition_without_fields.graphql │ │ └── 0043_interface_type_definition_without_fields.txt └── apollo-smith │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── examples │ ├── generate.rs │ ├── generate_response.rs │ ├── request.graphql │ └── schema.graphql │ ├── src │ ├── argument.rs │ ├── description.rs │ ├── directive.rs │ ├── document.rs │ ├── enum_.rs │ ├── field.rs │ ├── fragment.rs │ ├── input_object.rs │ ├── input_value.rs │ ├── interface.rs │ ├── lib.rs │ ├── name.rs │ ├── object.rs │ ├── operation.rs │ ├── response.rs │ ├── scalar.rs │ ├── schema.rs │ ├── selection_set.rs │ ├── snapshot_tests.rs │ ├── ty.rs │ ├── union.rs │ └── variable.rs │ └── tests │ └── with_document.rs ├── examples └── validation-wasm-demo │ ├── Cargo.toml │ ├── README.md │ ├── index.html │ └── src │ └── lib.rs ├── fuzz ├── .gitignore ├── Cargo.toml ├── fuzz_targets │ ├── coordinate.rs │ ├── lexer.rs │ ├── parser.rs │ ├── parser_limited.rs │ ├── reparse.rs │ └── strings.rs └── src │ └── lib.rs ├── graphql.ungram ├── images └── apollo_parser_tree_manipulation.png ├── rustfmt.toml └── xtask ├── Cargo.toml └── src ├── codegen ├── gen_syntax_kinds.rs ├── gen_syntax_nodes.rs └── mod.rs ├── cst_src.rs ├── main.rs └── utils.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @apollographql/rust-platform 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.github/ISSUE_TEMPLATE/docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/README.md -------------------------------------------------------------------------------- /crates/apollo-compiler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/CHANGELOG.md -------------------------------------------------------------------------------- /crates/apollo-compiler/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/Cargo.toml -------------------------------------------------------------------------------- /crates/apollo-compiler/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../../LICENSE-APACHE -------------------------------------------------------------------------------- /crates/apollo-compiler/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../../LICENSE-MIT -------------------------------------------------------------------------------- /crates/apollo-compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/README.md -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/directives_validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/benches/directives_validation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/fields_validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/benches/fields_validation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/fragments_validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/benches/fragments_validation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/multi_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/benches/multi_source.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/testdata/simple_query.graphql: -------------------------------------------------------------------------------- 1 | { cat { name } } 2 | -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/testdata/simple_schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/benches/testdata/simple_schema.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/testdata/supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/benches/testdata/supergraph.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/benches/testdata/supergraph_query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/benches/testdata/supergraph_query.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/async_resolvers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/async_resolvers.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/documents/get_dog_name.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/documents/get_dog_name.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/documents/get_dog_with_fragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/documents/get_dog_with_fragments.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/documents/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/documents/schema.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/documents/schema_extension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/documents/schema_extension.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/extract_directives_used_by_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/extract_directives_used_by_query.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/file_watcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/file_watcher.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/hello_world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/hello_world.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/introspect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/introspect.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/multi_source_validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/multi_source_validation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/query_with_errors.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/query_with_errors.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/rename.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/timed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/timed.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/examples/validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/examples/validate.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/ast/from_cst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/ast/from_cst.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/ast/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/ast/impls.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/ast/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/ast/mod.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/ast/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/ast/serialize.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/built_in_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/built_in_types.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/src/collections.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/collections.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/coordinate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/coordinate.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/diagnostic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/diagnostic.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/executable/from_ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/executable/from_ast.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/executable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/executable/mod.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/executable/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/executable/serialize.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/executable/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/executable/validation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/introspection/max_depth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/introspection/max_depth.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/introspection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/introspection/mod.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/introspection/resolvers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/introspection/resolvers.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/lib.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/macros.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/name.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/node.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/parser.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/request.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/resolvers/execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/resolvers/execution.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/resolvers/input_coercion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/resolvers/input_coercion.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/resolvers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/resolvers/mod.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/resolvers/result_coercion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/resolvers/result_coercion.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/response.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/schema/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/schema/component.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/schema/from_ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/schema/from_ast.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/schema/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/schema/mod.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/schema/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/schema/serialize.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/schema/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/schema/validation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/argument.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/argument.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/diagnostics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/diagnostics.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/directive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/directive.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/enum_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/enum_.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/field.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/fragment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/fragment.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/input_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/input_object.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/interface.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/mod.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/object.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/operation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/scalar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/scalar.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/schema.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/selection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/selection.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/union_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/union_.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/value.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/src/validation/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/src/validation/variable.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0001_duplicate_operatoin_names.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0001_duplicate_operatoin_names.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0001_duplicate_operatoin_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0001_duplicate_operatoin_names.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0002_multiple_anonymous_operations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0002_multiple_anonymous_operations.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0002_multiple_anonymous_operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0002_multiple_anonymous_operations.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0003_anonymous_and_named_operation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0003_anonymous_and_named_operation.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0003_anonymous_and_named_operation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0003_anonymous_and_named_operation.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0004_subscription_with_multiple_root_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0004_subscription_with_multiple_root_fields.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0007_operation_with_undefined_variables.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0007_operation_with_undefined_variables.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0007_operation_with_undefined_variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0007_operation_with_undefined_variables.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0010_operation_with_unused_variable.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0010_operation_with_unused_variable.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0010_operation_with_unused_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0010_operation_with_unused_variable.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0011_syntactic_errors_from_parser.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0011_syntactic_errors_from_parser.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0011_syntactic_errors_from_parser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0011_syntactic_errors_from_parser.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0016_schema_with_built_in_scalar_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0016_schema_with_built_in_scalar_definition.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0017_schema_with_unspecified_scalar.graphql: -------------------------------------------------------------------------------- 1 | # Placeholder for removed test, to avoid renumbering 2 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0017_schema_with_unspecified_scalar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0017_schema_with_unspecified_scalar.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0018_schema_with_specified_scalar_missing_values.graphql: -------------------------------------------------------------------------------- 1 | # Placeholder for removed test, to avoid renumbering 2 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0019_enum_definition_with_duplicate_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0019_enum_definition_with_duplicate_values.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0020_enum_values_with_uncapitalised_values.graphql: -------------------------------------------------------------------------------- 1 | # Placeholder for removed test, to avoid renumbering 2 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0022_duplicate_interface_definitions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0022_duplicate_interface_definitions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0022_duplicate_interface_definitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0022_duplicate_interface_definitions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0030_schema_with_duplicate_input_objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0030_schema_with_duplicate_input_objects.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0031_input_object_with_duplicate_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0031_input_object_with_duplicate_fields.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0032_duplicate_object_type_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0032_duplicate_object_type_definition.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0037_interface_with_non_output_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0037_interface_with_non_output_fields.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0039_interface_with_undefined_field_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0039_interface_with_undefined_field_type.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0043_undefined_union_member.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0043_undefined_union_member.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0043_undefined_union_member.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0043_undefined_union_member.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0044_union_member_not_of_object_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0044_union_member_not_of_object_type.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0044_union_member_not_of_object_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0044_union_member_not_of_object_type.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0046_duplicate_directive_arguments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0046_duplicate_directive_arguments.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0046_duplicate_directive_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0046_duplicate_directive_arguments.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0047_duplicate_field_arguments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0047_duplicate_field_arguments.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0047_duplicate_field_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0047_duplicate_field_arguments.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0050_directives_in_invalid_locations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0050_directives_in_invalid_locations.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0050_directives_in_invalid_locations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0050_directives_in_invalid_locations.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0052_undefined_directive.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0052_undefined_directive.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0052_undefined_directive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0052_undefined_directive.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0053_argument_name_is_not_defined.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0053_argument_name_is_not_defined.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0053_argument_name_is_not_defined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0053_argument_name_is_not_defined.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0054_argument_not_provided.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0054_argument_not_provided.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0054_argument_not_provided.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0054_argument_not_provided.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0055_duplicate_variable_definitions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0055_duplicate_variable_definitions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0055_duplicate_variable_definitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0055_duplicate_variable_definitions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0056_variables_are_input_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0056_variables_are_input_types.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0056_variables_are_input_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0056_variables_are_input_types.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0057_duplicate_type_names.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0057_duplicate_type_names.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0057_duplicate_type_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0057_duplicate_type_names.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0059_root_operation_object_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0059_root_operation_object_type.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0059_root_operation_object_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0059_root_operation_object_type.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0062_root_operation_with_list.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0062_root_operation_with_list.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0062_root_operation_with_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0062_root_operation_with_list.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0063_extension_orphan.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0063_extension_orphan.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0063_extension_orphan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0063_extension_orphan.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0064_extension_wrong_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0064_extension_wrong_type.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0064_extension_wrong_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0064_extension_wrong_type.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0065_subselection_of_enum.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0065_subselection_of_enum.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0065_subselection_of_enum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0065_subselection_of_enum.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0066_subselection_of_scalar.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0066_subselection_of_scalar.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0066_subselection_of_scalar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0066_subselection_of_scalar.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0067_subselection_of_interface.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0067_subselection_of_interface.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0067_subselection_of_interface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0067_subselection_of_interface.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0068_subselection_of_union.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0068_subselection_of_union.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0068_subselection_of_union.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0068_subselection_of_union.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0069_subselection_of_object.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0069_subselection_of_object.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0069_subselection_of_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0069_subselection_of_object.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0074_merge_identical_fields.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0074_merge_identical_fields.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0074_merge_identical_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0074_merge_identical_fields.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0075_merge_conflicting_args.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0075_merge_conflicting_args.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0075_merge_conflicting_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0075_merge_conflicting_args.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0076_merge_differing_responses.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0076_merge_differing_responses.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0076_merge_differing_responses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0076_merge_differing_responses.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0077_merge_conflict_deep.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0077_merge_conflict_deep.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0077_merge_conflict_deep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0077_merge_conflict_deep.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0078_merge_conflict_nested_fragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0078_merge_conflict_nested_fragments.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0078_merge_conflict_nested_fragments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0078_merge_conflict_nested_fragments.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0079_directive_is_unique.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0079_directive_is_unique.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0079_directive_is_unique.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0079_directive_is_unique.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0080_directive_is_unique_with_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0080_directive_is_unique_with_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0081_directive_is_unique_type_system.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0081_directive_is_unique_type_system.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0081_directive_is_unique_type_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0081_directive_is_unique_type_system.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0082_introspection_types_in_mutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0082_introspection_types_in_mutation.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0082_introspection_types_in_mutation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0082_introspection_types_in_mutation.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0084_circular_non_nullable_input_objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0084_circular_non_nullable_input_objects.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0085_fragment_spread_target_defined.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0085_fragment_spread_target_defined.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0085_fragment_spread_target_defined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0085_fragment_spread_target_defined.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0086_unused_fragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0086_unused_fragment.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0086_unused_fragment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0086_unused_fragment.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0088_fragment_selection_set.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0088_fragment_selection_set.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0088_fragment_selection_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0088_fragment_selection_set.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0090_fragment_spread_impossible.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0090_fragment_spread_impossible.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0090_fragment_spread_impossible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0090_fragment_spread_impossible.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0091_recursive_interface_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0091_recursive_interface_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0091_recursive_interface_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0091_recursive_interface_definition.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0092_recursive_fragment_spread.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0092_recursive_fragment_spread.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0092_recursive_fragment_spread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0092_recursive_fragment_spread.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0094_object_type_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0094_object_type_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0094_object_type_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0094_object_type_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0096_schema_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0096_schema_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0096_schema_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0096_schema_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0097_enum_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0097_enum_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0097_enum_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0097_enum_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0098_interface_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0098_interface_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0098_interface_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0098_interface_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0099_input_object_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0099_input_object_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0099_input_object_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0099_input_object_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0100_union_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0100_union_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0100_union_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0100_union_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0101_mismatched_variable_usage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0101_mismatched_variable_usage.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0101_mismatched_variable_usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0101_mismatched_variable_usage.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0102_invalid_string_values.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0102_invalid_string_values.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0102_invalid_string_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0102_invalid_string_values.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0103_invalid_directive_on_input_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0103_invalid_directive_on_input_value.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0104_invalid_type_in_arg.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0104_invalid_type_in_arg.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0104_invalid_type_in_arg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0104_invalid_type_in_arg.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0108_implicit_schema_extension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0108_implicit_schema_extension.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0108_implicit_schema_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0108_implicit_schema_extension.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0109_null_in_list_issue_738.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0109_null_in_list_issue_738.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0109_null_in_list_issue_738.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0109_null_in_list_issue_738.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0110_list_usage_in_non_list_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0110_list_usage_in_non_list_type.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0110_list_usage_in_non_list_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0110_list_usage_in_non_list_type.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0111_const_value.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0111_const_value.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0111_const_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0111_const_value.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0113_partially_overlapping_fragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0113_partially_overlapping_fragments.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0113_partially_overlapping_fragments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0113_partially_overlapping_fragments.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0116_enum_definition_with_missing_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0116_enum_definition_with_missing_values.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0119_reserved_names.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0119_reserved_names.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0119_reserved_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0119_reserved_names.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0120_conditional_subscriptions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0120_conditional_subscriptions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/diagnostics/0120_conditional_subscriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/diagnostics/0120_conditional_subscriptions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/introspection/introspect_full_schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/introspection/introspect_full_schema.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/introspection/response_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/introspection/response_full.json -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0001_annonymous_operation_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0001_annonymous_operation_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0001_annonymous_operation_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0001_annonymous_operation_definition.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0002_multiple_named_operation_definitions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0002_multiple_named_operation_definitions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0002_multiple_named_operation_definitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0002_multiple_named_operation_definitions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0004_schema_with_custom_scalars.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0004_schema_with_custom_scalars.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0004_schema_with_custom_scalars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0004_schema_with_custom_scalars.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0005_schema_with_valid_enum_definitions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0005_schema_with_valid_enum_definitions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0005_schema_with_valid_enum_definitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0005_schema_with_valid_enum_definitions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0006_schema_with_valid_union.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0006_schema_with_valid_union.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0006_schema_with_valid_union.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0006_schema_with_valid_union.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0007_schema_with_interface_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0007_schema_with_interface_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0007_schema_with_interface_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0007_schema_with_interface_definition.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0008_schema_with_directive_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0008_schema_with_directive_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0008_schema_with_directive_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0008_schema_with_directive_definition.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0009_schema_with_input_object.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0009_schema_with_input_object.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0009_schema_with_input_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0009_schema_with_input_object.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0010_operation_with_defined_fields.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0010_operation_with_defined_fields.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0010_operation_with_defined_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0010_operation_with_defined_fields.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0011_fragment_spreads_in_fragment_definitions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0011_fragment_spreads_in_fragment_definitions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0011_fragment_spreads_in_fragment_definitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0011_fragment_spreads_in_fragment_definitions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0012_introspection_query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0012_introspection_query.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0012_introspection_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0012_introspection_query.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0013_operation_with_used_variable_in_fragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0013_operation_with_used_variable_in_fragment.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0013_operation_with_used_variable_in_fragment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0013_operation_with_used_variable_in_fragment.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0014_float_values.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0014_float_values.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0014_float_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0014_float_values.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0015_supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0015_supergraph.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0015_supergraph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0015_supergraph.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0016_same_variables_in_multiple_operations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0016_same_variables_in_multiple_operations.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0016_same_variables_in_multiple_operations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0016_same_variables_in_multiple_operations.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0017_variables_are_input_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0017_variables_are_input_types.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0017_variables_are_input_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0017_variables_are_input_types.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0018_non_clashing_names.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0018_non_clashing_names.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0018_non_clashing_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0018_non_clashing_names.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0019_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0019_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0019_extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0019_extensions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0020_merge_identical_fields.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0020_merge_identical_fields.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0020_merge_identical_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0020_merge_identical_fields.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0021_merge_identical_fields_with_arguments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0021_merge_identical_fields_with_arguments.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0021_merge_identical_fields_with_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0021_merge_identical_fields_with_arguments.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0022_merge_differing_fields_and_args.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0022_merge_differing_fields_and_args.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0022_merge_differing_fields_and_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0022_merge_differing_fields_and_args.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0024_used_variables_in_directives.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0024_used_variables_in_directives.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0024_used_variables_in_directives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0024_used_variables_in_directives.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0025_unique_directives.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0025_unique_directives.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0025_unique_directives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0025_unique_directives.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0026_type_introspection.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0026_type_introspection.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0026_type_introspection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0026_type_introspection.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0027_typename_introspection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0027_typename_introspection.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0027_typename_introspection_in_object.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0027_typename_introspection_in_object.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0027_typename_introspection_in_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0027_typename_introspection_in_object.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0028_typename_introspection_in_union.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0028_typename_introspection_in_union.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0028_typename_introspection_in_union.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0028_typename_introspection_in_union.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0029_used_variable_in_list_and_input.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0029_used_variable_in_list_and_input.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0029_used_variable_in_list_and_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0029_used_variable_in_list_and_input.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0030_cyclical_nullable_input_objects.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0030_cyclical_nullable_input_objects.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0030_cyclical_nullable_input_objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0030_cyclical_nullable_input_objects.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0031_fragment_spread_possible.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0031_fragment_spread_possible.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0031_fragment_spread_possible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0031_fragment_spread_possible.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0032_valid_of_correct_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0032_valid_of_correct_type.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0032_valid_of_correct_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0032_valid_of_correct_type.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0033_valid_variable_usage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0033_valid_variable_usage.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0033_valid_variable_usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0033_valid_variable_usage.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0034_built_in_directive_redefinition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0034_built_in_directive_redefinition.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0034_built_in_directive_redefinition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0034_built_in_directive_redefinition.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0035_implicit_schema_definition_with_query_type.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | name: String 3 | } -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0035_implicit_schema_definition_with_query_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0035_implicit_schema_definition_with_query_type.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0037_implicit_schema_extension_with_directive.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0037_implicit_schema_extension_with_directive.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0037_implicit_schema_extension_with_directive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0037_implicit_schema_extension_with_directive.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0038_argument_default.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0038_argument_default.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0038_argument_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0038_argument_default.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0039_string_literals.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0039_string_literals.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0039_string_literals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0039_string_literals.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0040_field_merging_issue_755.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0040_field_merging_issue_755.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0040_field_merging_issue_755.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0040_field_merging_issue_755.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0041_unquoted_string_for_custom_scalar.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0041_unquoted_string_for_custom_scalar.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0041_unquoted_string_for_custom_scalar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0041_unquoted_string_for_custom_scalar.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0042_used_variable_in_operation_directive.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0042_used_variable_in_operation_directive.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0042_used_variable_in_operation_directive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0042_used_variable_in_operation_directive.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0116_interface_without_implementations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0116_interface_without_implementations.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0116_interface_without_implementations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0116_interface_without_implementations.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0117_subscription_conditions_not_at_root.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0117_subscription_conditions_not_at_root.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0117_subscription_conditions_not_at_root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0117_subscription_conditions_not_at_root.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0118_directive_with_nested_input_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0118_directive_with_nested_input_types.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0118_directive_with_nested_input_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0118_directive_with_nested_input_types.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0119_directive_with_argument_type_collisions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0119_directive_with_argument_type_collisions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/ok/0119_directive_with_argument_type_collisions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/ok/0119_directive_with_argument_type_collisions.txt -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0017_schema_with_unspecified_scalar.graphql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0018_schema_with_specified_scalar_missing_values.graphql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0020_enum_values_with_uncapitalised_values.graphql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0052_undefined_directive.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0052_undefined_directive.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0057_duplicate_type_names.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0057_duplicate_type_names.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0062_root_operation_with_list.graphql: -------------------------------------------------------------------------------- 1 | schema {} 2 | 3 | type Object { 4 | field: Int 5 | } 6 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0063_extension_orphan.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0063_extension_orphan.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0064_extension_wrong_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0064_extension_wrong_type.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0065_subselection_of_enum.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0065_subselection_of_enum.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0077_merge_conflict_deep.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0077_merge_conflict_deep.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0079_directive_is_unique.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0079_directive_is_unique.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0086_unused_fragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0086_unused_fragment.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0096_schema_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0096_schema_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0097_enum_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0097_enum_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0098_interface_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0098_interface_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0100_union_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0100_union_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0103_invalid_type_in_arg.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0103_invalid_type_in_arg.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0104_invalid_type_in_arg.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0104_invalid_type_in_arg.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0111_const_value.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0111_const_value.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0119_reserved_named.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0119_reserved_named.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/diagnostics/0119_reserved_names.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/diagnostics/0119_reserved_names.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0004_schema_with_custom_scalars.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0004_schema_with_custom_scalars.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0006_schema_with_valid_union.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0006_schema_with_valid_union.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0009_schema_with_input_object.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0009_schema_with_input_object.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0010_operation_with_defined_fields.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0010_operation_with_defined_fields.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0012_introspection_query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0012_introspection_query.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0014_float_values.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0014_float_values.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0015_supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0015_supergraph.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0017_variables_are_input_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0017_variables_are_input_types.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0018_non_clashing_names.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0018_non_clashing_names.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0019_extensions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0019_extensions.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0020_merge_identical_fields.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0020_merge_identical_fields.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0024_used_variables_in_directives.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0024_used_variables_in_directives.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0025_unique_directives.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0025_unique_directives.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0026_type_introspection.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0026_type_introspection.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0031_fragment_spread_possible.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0031_fragment_spread_possible.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0032_valid_of_correct_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0032_valid_of_correct_type.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0033_valid_variable_usage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0033_valid_variable_usage.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0035_implicit_schema_definition_with_query_type.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | name: String 3 | } 4 | -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0038_argument_default.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0038_argument_default.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0039_string_literals.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0039_string_literals.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/test_data/serializer/ok/0040_field_merging_issue_755.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/test_data/serializer/ok/0040_field_merging_issue_755.graphql -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/error_formatting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/error_formatting.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/executable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/executable.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/extensions.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/field_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/field_set.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/field_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/field_type.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/introspection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/introspection.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/introspection_max_depth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/introspection_max_depth.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/locations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/locations.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/main.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/merge_schemas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/merge_schemas.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/misc.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/name.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/parser.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/schema.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/serde.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/snapshot_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/snapshot_tests.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/field_merging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/field_merging.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/ignore_builtin_redefinition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/ignore_builtin_redefinition.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/interface.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/mod.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/object.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/operation.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/recursion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/recursion.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/types.rs -------------------------------------------------------------------------------- /crates/apollo-compiler/tests/validation/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-compiler/tests/validation/variable.rs -------------------------------------------------------------------------------- /crates/apollo-parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/CHANGELOG.md -------------------------------------------------------------------------------- /crates/apollo-parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/Cargo.toml -------------------------------------------------------------------------------- /crates/apollo-parser/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../../LICENSE-APACHE -------------------------------------------------------------------------------- /crates/apollo-parser/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../../LICENSE-MIT -------------------------------------------------------------------------------- /crates/apollo-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/README.md -------------------------------------------------------------------------------- /crates/apollo-parser/benches/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/benches/query.rs -------------------------------------------------------------------------------- /crates/apollo-parser/benches/supergraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/benches/supergraph.rs -------------------------------------------------------------------------------- /crates/apollo-parser/benches/testdata/alias.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/benches/testdata/alias.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/examples/annotate_snippet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/examples/annotate_snippet.rs -------------------------------------------------------------------------------- /crates/apollo-parser/examples/ariadne.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/examples/ariadne.rs -------------------------------------------------------------------------------- /crates/apollo-parser/examples/graph_check_mutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/examples/graph_check_mutation.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/examples/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/examples/schema.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/examples/schema_with_errors.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/examples/schema_with_errors.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/examples/unused_vars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/examples/unused_vars.rs -------------------------------------------------------------------------------- /crates/apollo-parser/screenshots/apollo_parser_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/screenshots/apollo_parser_error.png -------------------------------------------------------------------------------- /crates/apollo-parser/src/cst/generated/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod nodes; 2 | -------------------------------------------------------------------------------- /crates/apollo-parser/src/cst/generated/nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/cst/generated/nodes.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/cst/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/cst/mod.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/cst/node_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/cst/node_ext.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/error.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/lexer/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/lexer/cursor.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/lexer/lookup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/lexer/lookup.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/lexer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/lexer/mod.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/lexer/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/lexer/token.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/lexer/token_kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/lexer/token_kind.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/lib.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/limit.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/generated/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/generated/mod.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/generated/syntax_kind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/generated/syntax_kind.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/argument.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/argument.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/description.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/description.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/directive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/directive.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/document.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/enum_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/enum_.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/extensions.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/field.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/fragment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/fragment.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/input.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/interface.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/mod.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/name.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/object.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/operation.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/scalar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/scalar.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/schema.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/selection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/selection.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/ty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/ty.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/union_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/union_.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/value.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/grammar/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/grammar/variable.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/language.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/language.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/mod.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/syntax_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/syntax_tree.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/parser/token_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/parser/token_text.rs -------------------------------------------------------------------------------- /crates/apollo-parser/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/src/tests.rs -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0001_unterminated_spread_operator_with_one.graphql: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0001_unterminated_spread_operator_with_one.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:1 "Unterminated spread operator" . 2 | EOF@1:1 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0002_unterminated_spread_operator_with_2.graphql: -------------------------------------------------------------------------------- 1 | .. -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0002_unterminated_spread_operator_with_2.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:2 "Unterminated spread operator" .. 2 | EOF@2:2 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0003_float_with_incorrect_decimal_point.graphql: -------------------------------------------------------------------------------- 1 | 456E34.54 -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0003_float_with_incorrect_decimal_point.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:7 "Unexpected character `.` as float suffix" 456E34. 2 | INT@7:9 "54" 3 | EOF@9:9 4 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0004_unterminated_string_value.graphql: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0004_unterminated_string_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0004_unterminated_string_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0005_escaped_char.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0005_escaped_char.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0005_escaped_char.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0005_escaped_char.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0008_unterminated_string_value.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0008_unterminated_string_value.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0008_unterminated_string_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0008_unterminated_string_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0009_unterminated_string_value_as_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0009_unterminated_string_value_as_default.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0010_unterminated_string_value_with_unicode.graphql: -------------------------------------------------------------------------------- 1 | "hello✨ -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0010_unterminated_string_value_with_unicode.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:9 "unterminated string value" "hello✨ 2 | EOF@9:9 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0012_string_value_with_line_terminators.graphql: -------------------------------------------------------------------------------- 1 | " 2 | hello 3 | " -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0012_string_value_with_line_terminators.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:9 "unexpected line terminator" " 2 | hello 3 | " 4 | EOF@9:9 5 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0013_string_with_invalid_escapes.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0013_string_with_invalid_escapes.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0013_string_with_invalid_escapes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0013_string_with_invalid_escapes.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0014_plus_sign.graphql: -------------------------------------------------------------------------------- 1 | +1, + -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0014_plus_sign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0014_plus_sign.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0015_minus_sign.graphql: -------------------------------------------------------------------------------- 1 | -1, - -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0015_minus_sign.txt: -------------------------------------------------------------------------------- 1 | INT@0:2 "-1" 2 | COMMA@2:3 "," 3 | WHITESPACE@3:4 " " 4 | ERROR@4:5 "Unexpected character \"-\"" - 5 | EOF@5:5 6 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0016_leading_zero.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0016_leading_zero.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0016_leading_zero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0016_leading_zero.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0017_number_lookahead.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0017_number_lookahead.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0017_number_lookahead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0017_number_lookahead.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0018_eof_float_1.graphql: -------------------------------------------------------------------------------- 1 | 2. -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0018_eof_float_1.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:2 "Unexpected EOF in float value" 2. 2 | EOF@2:2 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0019_eof_float_2.graphql: -------------------------------------------------------------------------------- 1 | 2e -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0019_eof_float_2.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:2 "Unexpected EOF in float value" 2e 2 | EOF@2:2 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0020_eof_float_3.graphql: -------------------------------------------------------------------------------- 1 | 2e- -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0020_eof_float_3.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:3 "Unexpected EOF in float value" 2e- 2 | EOF@3:3 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0021_eof_float_4.graphql: -------------------------------------------------------------------------------- 1 | 2e+ -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0021_eof_float_4.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:3 "Unexpected EOF in float value" 2e+ 2 | EOF@3:3 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0022_eof_string_1.graphql: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0022_eof_string_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0022_eof_string_1.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0023_eof_string_1.graphql: -------------------------------------------------------------------------------- 1 | "\ -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0023_eof_string_1.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:2 "unterminated string value" "\ 2 | EOF@2:2 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0024_eof_string_2.graphql: -------------------------------------------------------------------------------- 1 | "\u -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0024_eof_string_2.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:3 "unterminated string value" "\u 2 | EOF@3:3 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0025_eof_string_3.graphql: -------------------------------------------------------------------------------- 1 | "\u222 -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0025_eof_string_3.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:6 "unterminated string value" "\u222 2 | EOF@6:6 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0026_eof_block_string_1.graphql: -------------------------------------------------------------------------------- 1 | """ -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0026_eof_block_string_1.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:3 "unterminated string value" """ 2 | EOF@3:3 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0027_eof_block_string_2.graphql: -------------------------------------------------------------------------------- 1 | """\ -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0027_eof_block_string_2.txt: -------------------------------------------------------------------------------- 1 | ERROR@0:4 "unterminated string value" """\ 2 | EOF@4:4 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0029_not_whitespace.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0029_not_whitespace.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0029_not_whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0029_not_whitespace.py -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0029_not_whitespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0029_not_whitespace.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0030_escaped_surrogate.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0030_escaped_surrogate.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/err/0030_escaped_surrogate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/err/0030_escaped_surrogate.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0001_hello.graphql: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0001_hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0001_hello.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0002_whitespace.graphql: -------------------------------------------------------------------------------- 1 | a b c 2 | d 3 | e f 4 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0002_whitespace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0002_whitespace.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0003_name.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0003_name.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0003_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0003_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0004_string_value.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0004_string_value.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0004_string_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0004_string_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0005_int.graphql: -------------------------------------------------------------------------------- 1 | -4 -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0005_int.txt: -------------------------------------------------------------------------------- 1 | INT@0:2 "-4" 2 | EOF@2:2 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0006_float.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0006_float.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0006_float.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0006_float.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0007_symbols.graphql: -------------------------------------------------------------------------------- 1 | ! $ & ... , : = @ ( ) [ ] { } | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0007_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0007_symbols.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0008_block_string.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0008_block_string.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0008_block_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0008_block_string.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0010_empty_string_value_followed_by_eof.graphql: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0010_empty_string_value_followed_by_eof.txt: -------------------------------------------------------------------------------- 1 | STRING_VALUE@0:2 "\"\"" 2 | EOF@2:2 3 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0011_escaped_char.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0011_escaped_char.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0011_escaped_char.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0011_escaped_char.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0012_unicode_char.graphql: -------------------------------------------------------------------------------- 1 | { name: "\u006Dy store\"" } 2 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0012_unicode_char.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0012_unicode_char.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0013_emoji_char_in_string_value.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0013_emoji_char_in_string_value.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/lexer/ok/0013_emoji_char_in_string_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/lexer/ok/0013_emoji_char_in_string_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0001_directive_definition_missing_location.graphql: -------------------------------------------------------------------------------- 1 | directive @example on -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0001_directive_definition_missing_location.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0001_directive_definition_missing_location.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0002_enum_definition_with_missing_name.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0002_enum_definition_with_missing_name.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0002_enum_definition_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0002_enum_definition_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0003_enum_definition_with_missing_values.graphql: -------------------------------------------------------------------------------- 1 | enum Direction { 2 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0003_enum_definition_with_missing_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0003_enum_definition_with_missing_values.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0004_enum_definition_with_missing_curly.graphql: -------------------------------------------------------------------------------- 1 | enum Direction { NORTH WEST -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0004_enum_definition_with_missing_curly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0004_enum_definition_with_missing_curly.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0005_enum_extension_with_missing_name.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0005_enum_extension_with_missing_name.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0005_enum_extension_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0005_enum_extension_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0006_enum_extension_with_missing_requirements.graphql: -------------------------------------------------------------------------------- 1 | extend enum Direction -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0007_fragment_definition_with_invalid_fragment_name.graphql: -------------------------------------------------------------------------------- 1 | fragment on User @example { 2 | id 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0008_fragment_definition_with_invalid_type_condition.graphql: -------------------------------------------------------------------------------- 1 | fragment friendFields User @example { 2 | id 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0009_fragment_definition_with_invalid_selection_set.graphql: -------------------------------------------------------------------------------- 1 | fragment friendFields on User -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0010_input_definition_with_missing_name.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0010_input_definition_with_missing_name.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0010_input_definition_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0010_input_definition_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0012_input_extension_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | extend input { 2 | a: String 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0012_input_extension_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0012_input_extension_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0014_interface_extension_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | extend interface { 2 | value: Int 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0014_interface_extension_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0014_interface_extension_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0015_interface_extension_with_missing_requirements.graphql: -------------------------------------------------------------------------------- 1 | extend interface ValuedEntity -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0017_object_type_extension_with_missing_requirements.graphql: -------------------------------------------------------------------------------- 1 | extend type Person -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0018_scalar_definition_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | scalar @deprecated -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0018_scalar_definition_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0018_scalar_definition_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0019_scalar_extension_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | extend scalar @deprecated -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0019_scalar_extension_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0019_scalar_extension_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0020_union_definition_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | union = Photo | Person -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0020_union_definition_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0020_union_definition_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0021_union_definition_with_missing_union_members.graphql: -------------------------------------------------------------------------------- 1 | union = -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0022_union_extension_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | extend union = Photo | Person -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0022_union_extension_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0022_union_extension_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0023_union_extension_with_missing_requirements.graphql: -------------------------------------------------------------------------------- 1 | extend union SearchResult -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0024_document_with_incorrect_definition.graphql: -------------------------------------------------------------------------------- 1 | awsas8d2934213hkj0987 -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0024_document_with_incorrect_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0024_document_with_incorrect_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0027_invalid_type_system_extension.graphql: -------------------------------------------------------------------------------- 1 | extend Cat -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0027_invalid_type_system_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0027_invalid_type_system_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0029_operation_definition_with_empty_selection_set.graphql: -------------------------------------------------------------------------------- 1 | query {} -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0030_operation_definition_with_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0030_operation_definition_with_description.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0031_argument_with_erronous_string_value.graphql: -------------------------------------------------------------------------------- 1 | { 2 | user(id: "\string ID") 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0031_argument_with_erronous_string_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0031_argument_with_erronous_string_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0032_input_value_with_erronous_string_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0032_input_value_with_erronous_string_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0033_directive_with_erronous_string_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0033_directive_with_erronous_string_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0034_unterminated_string_value_in_list.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0034_unterminated_string_value_in_list.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0034_unterminated_string_value_in_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0034_unterminated_string_value_in_list.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0036_unterminated_string_in_default_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0036_unterminated_string_in_default_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0040_operation_definition_missing_selection_set.graphql: -------------------------------------------------------------------------------- 1 | query __typename } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0041_operation_definition_with_missing_selection_set.graphql: -------------------------------------------------------------------------------- 1 | query __typename -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0042_document_with_incorrect_token.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0042_document_with_incorrect_token.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0042_document_with_incorrect_token.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0042_document_with_incorrect_token.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0043_type_with_trailing_garbage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0043_type_with_trailing_garbage.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0043_type_with_trailing_garbage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0043_type_with_trailing_garbage.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0044_list_type_with_no_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0044_list_type_with_no_type.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0044_list_type_with_no_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0044_list_type_with_no_type.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0045_ignored_token_spans.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0045_ignored_token_spans.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0045_ignored_token_spans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0045_ignored_token_spans.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0046_incomplete_spreads.graphql: -------------------------------------------------------------------------------- 1 | { inner { ... }} 2 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0046_incomplete_spreads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0046_incomplete_spreads.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0047_empty_variable_definition.graphql: -------------------------------------------------------------------------------- 1 | query Op() { 2 | field 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0047_empty_variable_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0047_empty_variable_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0048_unbalanced_list_type_1.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | unbalanced: [[Int]]] 3 | } 4 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0048_unbalanced_list_type_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0048_unbalanced_list_type_1.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0049_unbalanced_list_type_2.graphql: -------------------------------------------------------------------------------- 1 | type Query { 2 | unbalanced: [[[Int]] 3 | } 4 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0049_unbalanced_list_type_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0049_unbalanced_list_type_2.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0050_invalid_implements_list.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0050_invalid_implements_list.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0050_invalid_implements_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0050_invalid_implements_list.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0051_union_with_invalid_members_list.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0051_union_with_invalid_members_list.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0051_union_with_invalid_members_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0051_union_with_invalid_members_list.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0052_const_value.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0052_const_value.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0052_const_value.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0052_const_value.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0053_on_without_type_condition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0053_on_without_type_condition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0053_on_without_type_condition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0053_on_without_type_condition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0055_object_definition_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | type { 2 | id: String 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0055_object_definition_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0055_object_definition_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0056_object_definition_with_missing_curly.graphql: -------------------------------------------------------------------------------- 1 | type Person { id: String -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0056_object_definition_with_missing_curly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0056_object_definition_with_missing_curly.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0057_object_definition_with_missing_fields.graphql: -------------------------------------------------------------------------------- 1 | type Person { 2 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0057_object_definition_with_missing_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0057_object_definition_with_missing_fields.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0058_interface_definition_with_missing_name.graphql: -------------------------------------------------------------------------------- 1 | interface { 2 | id: String 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0058_interface_definition_with_missing_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/err/0058_interface_definition_with_missing_name.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0059_interface_definition_with_missing_fields.graphql: -------------------------------------------------------------------------------- 1 | interface Person { 2 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0060_interface_definition_with_missing_curly.graphql: -------------------------------------------------------------------------------- 1 | interface Person { id: String -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0061_empty.graphql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/err/0061_empty.txt: -------------------------------------------------------------------------------- 1 | - DOCUMENT@0..0 2 | - ERROR@1:1 "Unexpected ." EOF 3 | recursion limit: 500, high: 0 -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0002_selection_simple.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0002_selection_simple.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0002_selection_simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0002_selection_simple.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0003_selection_with_fields.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0003_selection_with_fields.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0003_selection_with_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0003_selection_with_fields.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0004_selection_with_fields_aliases_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0004_selection_with_fields_aliases_arguments.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0005_selection_with_inline_fragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0005_selection_with_inline_fragments.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0005_selection_with_inline_fragments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0005_selection_with_inline_fragments.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0006_selection_with_fragment_spread.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0006_selection_with_fragment_spread.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0006_selection_with_fragment_spread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0006_selection_with_fragment_spread.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0007_directive_definition.graphql: -------------------------------------------------------------------------------- 1 | directive @example on FIELD -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0007_directive_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0007_directive_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0008_directive_definition_with_arguments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0008_directive_definition_with_arguments.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0008_directive_definition_with_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0008_directive_definition_with_arguments.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0009_directive_definition_repeatable.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0009_directive_definition_repeatable.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0009_directive_definition_repeatable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0009_directive_definition_repeatable.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0010_enum_type_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0010_enum_type_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0010_enum_type_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0010_enum_type_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0011_enum_type_extension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0011_enum_type_extension.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0011_enum_type_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0011_enum_type_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0012_fragment_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0012_fragment_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0012_fragment_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0012_fragment_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0014_input_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0014_input_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0014_input_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0014_input_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0015_input_extension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0015_input_extension.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0015_input_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0015_input_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0016_interface_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0016_interface_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0016_interface_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0016_interface_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0017_interface_extension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0017_interface_extension.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0017_interface_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0017_interface_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0018_object_type_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0018_object_type_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0018_object_type_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0018_object_type_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0019_object_type_extension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0019_object_type_extension.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0019_object_type_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0019_object_type_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0020_operation_type_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0020_operation_type_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0020_operation_type_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0020_operation_type_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0023_scalar_definition.graphql: -------------------------------------------------------------------------------- 1 | scalar Time @deprecated -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0023_scalar_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0023_scalar_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0024_scalar_extension.graphql: -------------------------------------------------------------------------------- 1 | extend scalar Time @deprecated -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0024_scalar_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0024_scalar_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0025_schema_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0025_schema_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0025_schema_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0025_schema_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0026_schema_extension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0026_schema_extension.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0026_schema_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0026_schema_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0027_union_type_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0027_union_type_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0027_union_type_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0027_union_type_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0028_union_type_definition_followed_by_object_definition.graphql: -------------------------------------------------------------------------------- 1 | union SearchResult = Photo | Person 2 | 3 | type Error { 4 | code: Int 5 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0029_union_type_extension.graphql: -------------------------------------------------------------------------------- 1 | extend union SearchResult @deprecated = Photo | Person -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0029_union_type_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0029_union_type_extension.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0030_values.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0030_values.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0030_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0030_values.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0031_variables_with_default.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0031_variables_with_default.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0031_variables_with_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0031_variables_with_default.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0032_supergraph.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0032_supergraph.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0032_supergraph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0032_supergraph.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0033_directive_on_argument_definition.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0033_directive_on_argument_definition.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0033_directive_on_argument_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0033_directive_on_argument_definition.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0035_query_with_variables.graphql: -------------------------------------------------------------------------------- 1 | query Foo($bar: Int) { 2 | name 3 | } -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0035_query_with_variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0035_query_with_variables.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0038_wrapped_named_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0038_wrapped_named_types.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0038_wrapped_named_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0038_wrapped_named_types.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0039_variable_with_directives.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0039_variable_with_directives.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0039_variable_with_directives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0039_variable_with_directives.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0040_type_token_order.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0040_type_token_order.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0040_type_token_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0040_type_token_order.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0041_implements_list.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0041_implements_list.graphql -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0041_implements_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0041_implements_list.txt -------------------------------------------------------------------------------- /crates/apollo-parser/test_data/parser/ok/0042_object_type_definition_without_fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-parser/test_data/parser/ok/0042_object_type_definition_without_fields.txt -------------------------------------------------------------------------------- /crates/apollo-smith/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/CHANGELOG.md -------------------------------------------------------------------------------- /crates/apollo-smith/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/Cargo.toml -------------------------------------------------------------------------------- /crates/apollo-smith/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../../LICENSE-APACHE -------------------------------------------------------------------------------- /crates/apollo-smith/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../../LICENSE-MIT -------------------------------------------------------------------------------- /crates/apollo-smith/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/README.md -------------------------------------------------------------------------------- /crates/apollo-smith/examples/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/examples/generate.rs -------------------------------------------------------------------------------- /crates/apollo-smith/examples/generate_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/examples/generate_response.rs -------------------------------------------------------------------------------- /crates/apollo-smith/examples/request.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/examples/request.graphql -------------------------------------------------------------------------------- /crates/apollo-smith/examples/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/examples/schema.graphql -------------------------------------------------------------------------------- /crates/apollo-smith/src/argument.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/argument.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/description.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/description.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/directive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/directive.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/document.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/enum_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/enum_.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/field.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/fragment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/fragment.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/input_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/input_object.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/input_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/input_value.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/interface.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/lib.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/name.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/object.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/operation.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/response.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/scalar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/scalar.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/schema.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/selection_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/selection_set.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/snapshot_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/snapshot_tests.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/ty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/ty.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/union.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/union.rs -------------------------------------------------------------------------------- /crates/apollo-smith/src/variable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/src/variable.rs -------------------------------------------------------------------------------- /crates/apollo-smith/tests/with_document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/crates/apollo-smith/tests/with_document.rs -------------------------------------------------------------------------------- /examples/validation-wasm-demo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/examples/validation-wasm-demo/Cargo.toml -------------------------------------------------------------------------------- /examples/validation-wasm-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/examples/validation-wasm-demo/README.md -------------------------------------------------------------------------------- /examples/validation-wasm-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/examples/validation-wasm-demo/index.html -------------------------------------------------------------------------------- /examples/validation-wasm-demo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/examples/validation-wasm-demo/src/lib.rs -------------------------------------------------------------------------------- /fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | /artifacts 2 | /corpus 3 | -------------------------------------------------------------------------------- /fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/Cargo.toml -------------------------------------------------------------------------------- /fuzz/fuzz_targets/coordinate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/fuzz_targets/coordinate.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/lexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/fuzz_targets/lexer.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/fuzz_targets/parser.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/parser_limited.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/fuzz_targets/parser_limited.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/reparse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/fuzz_targets/reparse.rs -------------------------------------------------------------------------------- /fuzz/fuzz_targets/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/fuzz_targets/strings.rs -------------------------------------------------------------------------------- /fuzz/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/fuzz/src/lib.rs -------------------------------------------------------------------------------- /graphql.ungram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/graphql.ungram -------------------------------------------------------------------------------- /images/apollo_parser_tree_manipulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/images/apollo_parser_tree_manipulation.png -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/xtask/Cargo.toml -------------------------------------------------------------------------------- /xtask/src/codegen/gen_syntax_kinds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/xtask/src/codegen/gen_syntax_kinds.rs -------------------------------------------------------------------------------- /xtask/src/codegen/gen_syntax_nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/xtask/src/codegen/gen_syntax_nodes.rs -------------------------------------------------------------------------------- /xtask/src/codegen/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/xtask/src/codegen/mod.rs -------------------------------------------------------------------------------- /xtask/src/cst_src.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/xtask/src/cst_src.rs -------------------------------------------------------------------------------- /xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/xtask/src/main.rs -------------------------------------------------------------------------------- /xtask/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apollographql/apollo-rs/HEAD/xtask/src/utils.rs --------------------------------------------------------------------------------