├── .check.exs ├── .credo.exs ├── .formatter.exs ├── .github ├── dependabot.yml └── workflows │ └── elixir.yml ├── .gitignore ├── .tool-versions ├── .tool-versions.license ├── CHANGELOG.md ├── LICENSES └── MIT.txt ├── README.md ├── benchmarks └── subscriptions.exs ├── config └── config.exs ├── documentation ├── 1.0-CHANGELOG.md ├── dsls │ ├── DSL-AshGraphql.Domain.md │ ├── DSL-AshGraphql.Domain.md.license │ ├── DSL-AshGraphql.Resource.md │ └── DSL-AshGraphql.Resource.md.license ├── topics │ ├── authorize-with-graphql.md │ ├── custom-queries-and-mutations.md │ ├── generic-actions.md │ ├── graphql-generation.md │ ├── handle-errors.md │ ├── modifying-the-resolution.md │ ├── monitoring.md │ ├── relay.md │ ├── sdl-file.md │ ├── upgrade.md │ ├── use-enums-with-graphql.md │ ├── use-json-with-graphql.md │ ├── use-maps-with-graphql.md │ ├── use-struct-types-with-graphql.md │ ├── use-subscriptions-with-graphql.md │ └── use-unions-with-graphql.md └── tutorials │ └── getting-started-with-graphql.md ├── lib ├── ash_graphql.ex ├── codegen.ex ├── context_helpers.ex ├── default_error_handler.ex ├── domain │ ├── domain.ex │ ├── info.ex │ ├── transformers │ │ ├── require_keyset_for_relay_queries.ex │ │ ├── validate_actions.ex │ │ └── validate_compatible_names.ex │ └── verifiers │ │ └── verify_subscription_pubsub.ex ├── error.ex ├── graphql │ ├── domain_middleware.ex │ ├── errors.ex │ ├── id_translator.ex │ ├── metadata_middleware.ex │ └── resolver.ex ├── igniter.ex ├── mix │ └── tasks │ │ └── ash_graphql.install.ex ├── plug.ex ├── resource │ ├── helpers.ex │ ├── info.ex │ ├── managed_relationship.ex │ ├── mutation.ex │ ├── query.ex │ ├── resource.ex │ ├── subscription.ex │ ├── transformers │ │ ├── require_keyset_for_relay_queries.ex │ │ ├── subscription.ex │ │ ├── validate_actions.ex │ │ └── validate_compatible_names.ex │ └── verifiers │ │ ├── require_pkey_delimiter.ex │ │ ├── verify_argument_input_types.ex │ │ ├── verify_domain_query_metadata.ex │ │ ├── verify_paginate_relationship_with.ex │ │ ├── verify_query_metadata.ex │ │ └── verify_subscription_actions.ex ├── subscription │ ├── actor.ex │ ├── actor_function.ex │ ├── batcher.ex │ ├── config.ex │ ├── endpoint.ex │ ├── notifier.ex │ └── runner.ex ├── subscriptions.ex ├── trace_helpers.ex ├── type.ex └── types │ ├── json.ex │ └── json_string.ex ├── logos ├── cropped-for-header.png ├── cropped-for-header.png.license ├── logo-black-text.png ├── logo-black-text.png.license ├── logo-only.png ├── logo-only.png.license ├── logo-white-text.png ├── logo-white-text.png.license ├── small-logo.png └── small-logo.png.license ├── mix.exs ├── mix.lock ├── mix.lock.license ├── priv ├── relay_ids.graphql ├── relay_ids.graphql.license ├── root_level_errors.graphql ├── root_level_errors.graphql.license ├── schema.graphql └── schema.graphql.license ├── test ├── alias_test.exs ├── ash_graphql_test.exs ├── attribute_test.exs ├── create_test.exs ├── custom_paginate_test.exs ├── destroy_test.exs ├── domain_pubsub_validation_test.exs ├── enum_test.exs ├── errors_test.exs ├── filter_sort_test.exs ├── generic_actions_test.exs ├── gf_test.exs ├── lazyinit_post_search_test.exs ├── meta_test.exs ├── mix │ └── tasks │ │ └── ash_graphql_install_test.exs ├── paginate_test.exs ├── plug_test.exs ├── read_test.exs ├── relationship_pagination_test.exs ├── relay_ids_test.exs ├── relay_test.exs ├── resource_test.exs ├── subscription_test.exs ├── support │ ├── domain.ex │ ├── embeds.ex │ ├── force_change_id.ex │ ├── gf │ │ ├── active_member_policy.ex │ │ ├── ash_graphql_schema.ex │ │ ├── attendee.ex │ │ ├── domain.ex │ │ ├── event.ex │ │ ├── group.ex │ │ ├── member.ex │ │ └── types │ │ │ └── member_status.ex │ ├── lazyinit_reproduce │ │ └── example.ex │ ├── meta_middleware.ex │ ├── other_domain.ex │ ├── pub_sub.ex │ ├── relay_domain.ex │ ├── relay_ids │ │ ├── domain.ex │ │ ├── resources │ │ │ ├── comment.ex │ │ │ ├── post.ex │ │ │ ├── resource_with_no_primary_key_get.ex │ │ │ └── user.ex │ │ └── schema.ex │ ├── relay_schema.ex │ ├── resources │ │ ├── actor.ex │ │ ├── actor_agent.ex │ │ ├── agent.ex │ │ ├── award.ex │ │ ├── channel │ │ │ ├── calculations │ │ │ │ ├── filter_by_actor_messages_calculation.ex │ │ │ │ └── messages_calculation.ex │ │ │ ├── changes │ │ │ │ └── create_message_user.ex │ │ │ ├── channel.ex │ │ │ ├── channel_simple.ex │ │ │ ├── image_message.ex │ │ │ ├── message.ex │ │ │ ├── message_viewable_user.ex │ │ │ ├── text_message.ex │ │ │ └── types │ │ │ │ ├── messages_union.ex │ │ │ │ ├── page_of_filter_by_actor_messages.ex │ │ │ │ └── page_of_messages.ex │ │ ├── comment.ex │ │ ├── composite_primary_key.ex │ │ ├── composite_primary_key_not_encoded.ex │ │ ├── constrained_map.ex │ │ ├── domain_level_pubsub_resource.ex │ │ ├── double_rel_embed.ex │ │ ├── double_rel_recursive.ex │ │ ├── double_rel_recursive_to_embed.ex │ │ ├── double_rel_type.ex │ │ ├── embed.ex │ │ ├── error_handling.ex │ │ ├── map_types.ex │ │ ├── movie.ex │ │ ├── movie_actor.ex │ │ ├── multitenant_post_tag.ex │ │ ├── multitenant_tag.ex │ │ ├── nested_embed.ex │ │ ├── nested_enum.ex │ │ ├── no_graphql.ex │ │ ├── no_object.ex │ │ ├── non_id_primary_key.ex │ │ ├── other_resource.ex │ │ ├── post.ex │ │ ├── post_tag.ex │ │ ├── product.ex │ │ ├── relay_post_tag.ex │ │ ├── relay_subscribable.ex │ │ ├── relay_tag.ex │ │ ├── resource_level_pubsub_resource.ex │ │ ├── resource_with_type_inside_type.ex │ │ ├── resource_with_typed_struct.ex │ │ ├── resource_with_union.ex │ │ ├── review.ex │ │ ├── sponsored_comment.ex │ │ ├── subscribable.ex │ │ ├── tag.ex │ │ └── user.ex │ ├── root_level_errors_domain.ex │ ├── root_level_errors_schema.ex │ ├── schema.ex │ ├── simple_domain.ex │ ├── simple_domain │ │ └── simple_resource.ex │ ├── simple_schema.ex │ ├── static_calculation.ex │ ├── test_helpers.ex │ └── types │ │ ├── array_inner_type.ex │ │ ├── common_map.ex │ │ ├── common_map_struct.ex │ │ ├── embed_union_new_type.ex │ │ ├── embed_union_new_type_unnested.ex │ │ ├── enum_new_type.ex │ │ ├── enum_with_ash_description.ex │ │ ├── enum_with_ash_graphql_description.ex │ │ ├── foo.ex │ │ ├── map_with_embedded_resource.ex │ │ ├── person_map.ex │ │ ├── person_regular_struct.ex │ │ ├── person_typed_struct.ex │ │ ├── simple_union.ex │ │ ├── status.ex │ │ ├── status_enum.ex │ │ ├── string_new_type.ex │ │ ├── type_with_type_inside.ex │ │ ├── type_within_type_unreferenced_submap.ex │ │ └── union_relation.ex ├── test_helper.exs ├── union_test.exs └── update_test.exs └── usage-rules.md /.check.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/.check.exs -------------------------------------------------------------------------------- /.credo.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/.credo.exs -------------------------------------------------------------------------------- /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/elixir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/.github/workflows/elixir.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | erlang 27.0.1 2 | elixir 1.18.4 3 | pipx 1.8.0 4 | -------------------------------------------------------------------------------- /.tool-versions.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/.tool-versions.license -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/subscriptions.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/benchmarks/subscriptions.exs -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/config/config.exs -------------------------------------------------------------------------------- /documentation/1.0-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/1.0-CHANGELOG.md -------------------------------------------------------------------------------- /documentation/dsls/DSL-AshGraphql.Domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/dsls/DSL-AshGraphql.Domain.md -------------------------------------------------------------------------------- /documentation/dsls/DSL-AshGraphql.Domain.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/dsls/DSL-AshGraphql.Domain.md.license -------------------------------------------------------------------------------- /documentation/dsls/DSL-AshGraphql.Resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/dsls/DSL-AshGraphql.Resource.md -------------------------------------------------------------------------------- /documentation/dsls/DSL-AshGraphql.Resource.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/dsls/DSL-AshGraphql.Resource.md.license -------------------------------------------------------------------------------- /documentation/topics/authorize-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/authorize-with-graphql.md -------------------------------------------------------------------------------- /documentation/topics/custom-queries-and-mutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/custom-queries-and-mutations.md -------------------------------------------------------------------------------- /documentation/topics/generic-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/generic-actions.md -------------------------------------------------------------------------------- /documentation/topics/graphql-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/graphql-generation.md -------------------------------------------------------------------------------- /documentation/topics/handle-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/handle-errors.md -------------------------------------------------------------------------------- /documentation/topics/modifying-the-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/modifying-the-resolution.md -------------------------------------------------------------------------------- /documentation/topics/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/monitoring.md -------------------------------------------------------------------------------- /documentation/topics/relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/relay.md -------------------------------------------------------------------------------- /documentation/topics/sdl-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/sdl-file.md -------------------------------------------------------------------------------- /documentation/topics/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/upgrade.md -------------------------------------------------------------------------------- /documentation/topics/use-enums-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/use-enums-with-graphql.md -------------------------------------------------------------------------------- /documentation/topics/use-json-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/use-json-with-graphql.md -------------------------------------------------------------------------------- /documentation/topics/use-maps-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/use-maps-with-graphql.md -------------------------------------------------------------------------------- /documentation/topics/use-struct-types-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/use-struct-types-with-graphql.md -------------------------------------------------------------------------------- /documentation/topics/use-subscriptions-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/use-subscriptions-with-graphql.md -------------------------------------------------------------------------------- /documentation/topics/use-unions-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/topics/use-unions-with-graphql.md -------------------------------------------------------------------------------- /documentation/tutorials/getting-started-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/documentation/tutorials/getting-started-with-graphql.md -------------------------------------------------------------------------------- /lib/ash_graphql.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/ash_graphql.ex -------------------------------------------------------------------------------- /lib/codegen.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/codegen.ex -------------------------------------------------------------------------------- /lib/context_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/context_helpers.ex -------------------------------------------------------------------------------- /lib/default_error_handler.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/default_error_handler.ex -------------------------------------------------------------------------------- /lib/domain/domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/domain/domain.ex -------------------------------------------------------------------------------- /lib/domain/info.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/domain/info.ex -------------------------------------------------------------------------------- /lib/domain/transformers/require_keyset_for_relay_queries.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/domain/transformers/require_keyset_for_relay_queries.ex -------------------------------------------------------------------------------- /lib/domain/transformers/validate_actions.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/domain/transformers/validate_actions.ex -------------------------------------------------------------------------------- /lib/domain/transformers/validate_compatible_names.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/domain/transformers/validate_compatible_names.ex -------------------------------------------------------------------------------- /lib/domain/verifiers/verify_subscription_pubsub.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/domain/verifiers/verify_subscription_pubsub.ex -------------------------------------------------------------------------------- /lib/error.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/error.ex -------------------------------------------------------------------------------- /lib/graphql/domain_middleware.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/graphql/domain_middleware.ex -------------------------------------------------------------------------------- /lib/graphql/errors.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/graphql/errors.ex -------------------------------------------------------------------------------- /lib/graphql/id_translator.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/graphql/id_translator.ex -------------------------------------------------------------------------------- /lib/graphql/metadata_middleware.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/graphql/metadata_middleware.ex -------------------------------------------------------------------------------- /lib/graphql/resolver.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/graphql/resolver.ex -------------------------------------------------------------------------------- /lib/igniter.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/igniter.ex -------------------------------------------------------------------------------- /lib/mix/tasks/ash_graphql.install.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/mix/tasks/ash_graphql.install.ex -------------------------------------------------------------------------------- /lib/plug.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/plug.ex -------------------------------------------------------------------------------- /lib/resource/helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/helpers.ex -------------------------------------------------------------------------------- /lib/resource/info.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/info.ex -------------------------------------------------------------------------------- /lib/resource/managed_relationship.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/managed_relationship.ex -------------------------------------------------------------------------------- /lib/resource/mutation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/mutation.ex -------------------------------------------------------------------------------- /lib/resource/query.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/query.ex -------------------------------------------------------------------------------- /lib/resource/resource.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/resource.ex -------------------------------------------------------------------------------- /lib/resource/subscription.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/subscription.ex -------------------------------------------------------------------------------- /lib/resource/transformers/require_keyset_for_relay_queries.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/transformers/require_keyset_for_relay_queries.ex -------------------------------------------------------------------------------- /lib/resource/transformers/subscription.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/transformers/subscription.ex -------------------------------------------------------------------------------- /lib/resource/transformers/validate_actions.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/transformers/validate_actions.ex -------------------------------------------------------------------------------- /lib/resource/transformers/validate_compatible_names.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/transformers/validate_compatible_names.ex -------------------------------------------------------------------------------- /lib/resource/verifiers/require_pkey_delimiter.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/verifiers/require_pkey_delimiter.ex -------------------------------------------------------------------------------- /lib/resource/verifiers/verify_argument_input_types.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/verifiers/verify_argument_input_types.ex -------------------------------------------------------------------------------- /lib/resource/verifiers/verify_domain_query_metadata.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/verifiers/verify_domain_query_metadata.ex -------------------------------------------------------------------------------- /lib/resource/verifiers/verify_paginate_relationship_with.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/verifiers/verify_paginate_relationship_with.ex -------------------------------------------------------------------------------- /lib/resource/verifiers/verify_query_metadata.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/verifiers/verify_query_metadata.ex -------------------------------------------------------------------------------- /lib/resource/verifiers/verify_subscription_actions.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/resource/verifiers/verify_subscription_actions.ex -------------------------------------------------------------------------------- /lib/subscription/actor.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscription/actor.ex -------------------------------------------------------------------------------- /lib/subscription/actor_function.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscription/actor_function.ex -------------------------------------------------------------------------------- /lib/subscription/batcher.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscription/batcher.ex -------------------------------------------------------------------------------- /lib/subscription/config.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscription/config.ex -------------------------------------------------------------------------------- /lib/subscription/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscription/endpoint.ex -------------------------------------------------------------------------------- /lib/subscription/notifier.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscription/notifier.ex -------------------------------------------------------------------------------- /lib/subscription/runner.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscription/runner.ex -------------------------------------------------------------------------------- /lib/subscriptions.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/subscriptions.ex -------------------------------------------------------------------------------- /lib/trace_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/trace_helpers.ex -------------------------------------------------------------------------------- /lib/type.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/type.ex -------------------------------------------------------------------------------- /lib/types/json.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/types/json.ex -------------------------------------------------------------------------------- /lib/types/json_string.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/lib/types/json_string.ex -------------------------------------------------------------------------------- /logos/cropped-for-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/cropped-for-header.png -------------------------------------------------------------------------------- /logos/cropped-for-header.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/cropped-for-header.png.license -------------------------------------------------------------------------------- /logos/logo-black-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/logo-black-text.png -------------------------------------------------------------------------------- /logos/logo-black-text.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/logo-black-text.png.license -------------------------------------------------------------------------------- /logos/logo-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/logo-only.png -------------------------------------------------------------------------------- /logos/logo-only.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/logo-only.png.license -------------------------------------------------------------------------------- /logos/logo-white-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/logo-white-text.png -------------------------------------------------------------------------------- /logos/logo-white-text.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/logo-white-text.png.license -------------------------------------------------------------------------------- /logos/small-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/small-logo.png -------------------------------------------------------------------------------- /logos/small-logo.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/logos/small-logo.png.license -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/mix.lock -------------------------------------------------------------------------------- /mix.lock.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/mix.lock.license -------------------------------------------------------------------------------- /priv/relay_ids.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/priv/relay_ids.graphql -------------------------------------------------------------------------------- /priv/relay_ids.graphql.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/priv/relay_ids.graphql.license -------------------------------------------------------------------------------- /priv/root_level_errors.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/priv/root_level_errors.graphql -------------------------------------------------------------------------------- /priv/root_level_errors.graphql.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/priv/root_level_errors.graphql.license -------------------------------------------------------------------------------- /priv/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/priv/schema.graphql -------------------------------------------------------------------------------- /priv/schema.graphql.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/priv/schema.graphql.license -------------------------------------------------------------------------------- /test/alias_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/alias_test.exs -------------------------------------------------------------------------------- /test/ash_graphql_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/ash_graphql_test.exs -------------------------------------------------------------------------------- /test/attribute_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/attribute_test.exs -------------------------------------------------------------------------------- /test/create_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/create_test.exs -------------------------------------------------------------------------------- /test/custom_paginate_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/custom_paginate_test.exs -------------------------------------------------------------------------------- /test/destroy_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/destroy_test.exs -------------------------------------------------------------------------------- /test/domain_pubsub_validation_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/domain_pubsub_validation_test.exs -------------------------------------------------------------------------------- /test/enum_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/enum_test.exs -------------------------------------------------------------------------------- /test/errors_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/errors_test.exs -------------------------------------------------------------------------------- /test/filter_sort_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/filter_sort_test.exs -------------------------------------------------------------------------------- /test/generic_actions_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/generic_actions_test.exs -------------------------------------------------------------------------------- /test/gf_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/gf_test.exs -------------------------------------------------------------------------------- /test/lazyinit_post_search_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/lazyinit_post_search_test.exs -------------------------------------------------------------------------------- /test/meta_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/meta_test.exs -------------------------------------------------------------------------------- /test/mix/tasks/ash_graphql_install_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/mix/tasks/ash_graphql_install_test.exs -------------------------------------------------------------------------------- /test/paginate_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/paginate_test.exs -------------------------------------------------------------------------------- /test/plug_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/plug_test.exs -------------------------------------------------------------------------------- /test/read_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/read_test.exs -------------------------------------------------------------------------------- /test/relationship_pagination_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/relationship_pagination_test.exs -------------------------------------------------------------------------------- /test/relay_ids_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/relay_ids_test.exs -------------------------------------------------------------------------------- /test/relay_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/relay_test.exs -------------------------------------------------------------------------------- /test/resource_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/resource_test.exs -------------------------------------------------------------------------------- /test/subscription_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/subscription_test.exs -------------------------------------------------------------------------------- /test/support/domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/domain.ex -------------------------------------------------------------------------------- /test/support/embeds.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/embeds.ex -------------------------------------------------------------------------------- /test/support/force_change_id.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/force_change_id.ex -------------------------------------------------------------------------------- /test/support/gf/active_member_policy.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/active_member_policy.ex -------------------------------------------------------------------------------- /test/support/gf/ash_graphql_schema.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/ash_graphql_schema.ex -------------------------------------------------------------------------------- /test/support/gf/attendee.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/attendee.ex -------------------------------------------------------------------------------- /test/support/gf/domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/domain.ex -------------------------------------------------------------------------------- /test/support/gf/event.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/event.ex -------------------------------------------------------------------------------- /test/support/gf/group.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/group.ex -------------------------------------------------------------------------------- /test/support/gf/member.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/member.ex -------------------------------------------------------------------------------- /test/support/gf/types/member_status.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/gf/types/member_status.ex -------------------------------------------------------------------------------- /test/support/lazyinit_reproduce/example.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/lazyinit_reproduce/example.ex -------------------------------------------------------------------------------- /test/support/meta_middleware.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/meta_middleware.ex -------------------------------------------------------------------------------- /test/support/other_domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/other_domain.ex -------------------------------------------------------------------------------- /test/support/pub_sub.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/pub_sub.ex -------------------------------------------------------------------------------- /test/support/relay_domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_domain.ex -------------------------------------------------------------------------------- /test/support/relay_ids/domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_ids/domain.ex -------------------------------------------------------------------------------- /test/support/relay_ids/resources/comment.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_ids/resources/comment.ex -------------------------------------------------------------------------------- /test/support/relay_ids/resources/post.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_ids/resources/post.ex -------------------------------------------------------------------------------- /test/support/relay_ids/resources/resource_with_no_primary_key_get.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_ids/resources/resource_with_no_primary_key_get.ex -------------------------------------------------------------------------------- /test/support/relay_ids/resources/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_ids/resources/user.ex -------------------------------------------------------------------------------- /test/support/relay_ids/schema.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_ids/schema.ex -------------------------------------------------------------------------------- /test/support/relay_schema.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/relay_schema.ex -------------------------------------------------------------------------------- /test/support/resources/actor.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/actor.ex -------------------------------------------------------------------------------- /test/support/resources/actor_agent.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/actor_agent.ex -------------------------------------------------------------------------------- /test/support/resources/agent.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/agent.ex -------------------------------------------------------------------------------- /test/support/resources/award.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/award.ex -------------------------------------------------------------------------------- /test/support/resources/channel/calculations/filter_by_actor_messages_calculation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/calculations/filter_by_actor_messages_calculation.ex -------------------------------------------------------------------------------- /test/support/resources/channel/calculations/messages_calculation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/calculations/messages_calculation.ex -------------------------------------------------------------------------------- /test/support/resources/channel/changes/create_message_user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/changes/create_message_user.ex -------------------------------------------------------------------------------- /test/support/resources/channel/channel.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/channel.ex -------------------------------------------------------------------------------- /test/support/resources/channel/channel_simple.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/channel_simple.ex -------------------------------------------------------------------------------- /test/support/resources/channel/image_message.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/image_message.ex -------------------------------------------------------------------------------- /test/support/resources/channel/message.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/message.ex -------------------------------------------------------------------------------- /test/support/resources/channel/message_viewable_user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/message_viewable_user.ex -------------------------------------------------------------------------------- /test/support/resources/channel/text_message.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/text_message.ex -------------------------------------------------------------------------------- /test/support/resources/channel/types/messages_union.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/types/messages_union.ex -------------------------------------------------------------------------------- /test/support/resources/channel/types/page_of_filter_by_actor_messages.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/types/page_of_filter_by_actor_messages.ex -------------------------------------------------------------------------------- /test/support/resources/channel/types/page_of_messages.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/channel/types/page_of_messages.ex -------------------------------------------------------------------------------- /test/support/resources/comment.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/comment.ex -------------------------------------------------------------------------------- /test/support/resources/composite_primary_key.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/composite_primary_key.ex -------------------------------------------------------------------------------- /test/support/resources/composite_primary_key_not_encoded.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/composite_primary_key_not_encoded.ex -------------------------------------------------------------------------------- /test/support/resources/constrained_map.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/constrained_map.ex -------------------------------------------------------------------------------- /test/support/resources/domain_level_pubsub_resource.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/domain_level_pubsub_resource.ex -------------------------------------------------------------------------------- /test/support/resources/double_rel_embed.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/double_rel_embed.ex -------------------------------------------------------------------------------- /test/support/resources/double_rel_recursive.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/double_rel_recursive.ex -------------------------------------------------------------------------------- /test/support/resources/double_rel_recursive_to_embed.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/double_rel_recursive_to_embed.ex -------------------------------------------------------------------------------- /test/support/resources/double_rel_type.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/double_rel_type.ex -------------------------------------------------------------------------------- /test/support/resources/embed.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/embed.ex -------------------------------------------------------------------------------- /test/support/resources/error_handling.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/error_handling.ex -------------------------------------------------------------------------------- /test/support/resources/map_types.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/map_types.ex -------------------------------------------------------------------------------- /test/support/resources/movie.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/movie.ex -------------------------------------------------------------------------------- /test/support/resources/movie_actor.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/movie_actor.ex -------------------------------------------------------------------------------- /test/support/resources/multitenant_post_tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/multitenant_post_tag.ex -------------------------------------------------------------------------------- /test/support/resources/multitenant_tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/multitenant_tag.ex -------------------------------------------------------------------------------- /test/support/resources/nested_embed.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/nested_embed.ex -------------------------------------------------------------------------------- /test/support/resources/nested_enum.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/nested_enum.ex -------------------------------------------------------------------------------- /test/support/resources/no_graphql.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/no_graphql.ex -------------------------------------------------------------------------------- /test/support/resources/no_object.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/no_object.ex -------------------------------------------------------------------------------- /test/support/resources/non_id_primary_key.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/non_id_primary_key.ex -------------------------------------------------------------------------------- /test/support/resources/other_resource.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/other_resource.ex -------------------------------------------------------------------------------- /test/support/resources/post.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/post.ex -------------------------------------------------------------------------------- /test/support/resources/post_tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/post_tag.ex -------------------------------------------------------------------------------- /test/support/resources/product.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/product.ex -------------------------------------------------------------------------------- /test/support/resources/relay_post_tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/relay_post_tag.ex -------------------------------------------------------------------------------- /test/support/resources/relay_subscribable.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/relay_subscribable.ex -------------------------------------------------------------------------------- /test/support/resources/relay_tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/relay_tag.ex -------------------------------------------------------------------------------- /test/support/resources/resource_level_pubsub_resource.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/resource_level_pubsub_resource.ex -------------------------------------------------------------------------------- /test/support/resources/resource_with_type_inside_type.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/resource_with_type_inside_type.ex -------------------------------------------------------------------------------- /test/support/resources/resource_with_typed_struct.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/resource_with_typed_struct.ex -------------------------------------------------------------------------------- /test/support/resources/resource_with_union.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/resource_with_union.ex -------------------------------------------------------------------------------- /test/support/resources/review.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/review.ex -------------------------------------------------------------------------------- /test/support/resources/sponsored_comment.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/sponsored_comment.ex -------------------------------------------------------------------------------- /test/support/resources/subscribable.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/subscribable.ex -------------------------------------------------------------------------------- /test/support/resources/tag.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/tag.ex -------------------------------------------------------------------------------- /test/support/resources/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/resources/user.ex -------------------------------------------------------------------------------- /test/support/root_level_errors_domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/root_level_errors_domain.ex -------------------------------------------------------------------------------- /test/support/root_level_errors_schema.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/root_level_errors_schema.ex -------------------------------------------------------------------------------- /test/support/schema.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/schema.ex -------------------------------------------------------------------------------- /test/support/simple_domain.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/simple_domain.ex -------------------------------------------------------------------------------- /test/support/simple_domain/simple_resource.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/simple_domain/simple_resource.ex -------------------------------------------------------------------------------- /test/support/simple_schema.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/simple_schema.ex -------------------------------------------------------------------------------- /test/support/static_calculation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/static_calculation.ex -------------------------------------------------------------------------------- /test/support/test_helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/test_helpers.ex -------------------------------------------------------------------------------- /test/support/types/array_inner_type.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/array_inner_type.ex -------------------------------------------------------------------------------- /test/support/types/common_map.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/common_map.ex -------------------------------------------------------------------------------- /test/support/types/common_map_struct.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/common_map_struct.ex -------------------------------------------------------------------------------- /test/support/types/embed_union_new_type.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/embed_union_new_type.ex -------------------------------------------------------------------------------- /test/support/types/embed_union_new_type_unnested.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/embed_union_new_type_unnested.ex -------------------------------------------------------------------------------- /test/support/types/enum_new_type.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/enum_new_type.ex -------------------------------------------------------------------------------- /test/support/types/enum_with_ash_description.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/enum_with_ash_description.ex -------------------------------------------------------------------------------- /test/support/types/enum_with_ash_graphql_description.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/enum_with_ash_graphql_description.ex -------------------------------------------------------------------------------- /test/support/types/foo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/foo.ex -------------------------------------------------------------------------------- /test/support/types/map_with_embedded_resource.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/map_with_embedded_resource.ex -------------------------------------------------------------------------------- /test/support/types/person_map.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/person_map.ex -------------------------------------------------------------------------------- /test/support/types/person_regular_struct.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/person_regular_struct.ex -------------------------------------------------------------------------------- /test/support/types/person_typed_struct.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/person_typed_struct.ex -------------------------------------------------------------------------------- /test/support/types/simple_union.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/simple_union.ex -------------------------------------------------------------------------------- /test/support/types/status.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/status.ex -------------------------------------------------------------------------------- /test/support/types/status_enum.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/status_enum.ex -------------------------------------------------------------------------------- /test/support/types/string_new_type.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/string_new_type.ex -------------------------------------------------------------------------------- /test/support/types/type_with_type_inside.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/type_with_type_inside.ex -------------------------------------------------------------------------------- /test/support/types/type_within_type_unreferenced_submap.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/type_within_type_unreferenced_submap.ex -------------------------------------------------------------------------------- /test/support/types/union_relation.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/support/types/union_relation.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/test_helper.exs -------------------------------------------------------------------------------- /test/union_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/union_test.exs -------------------------------------------------------------------------------- /test/update_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/test/update_test.exs -------------------------------------------------------------------------------- /usage-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-project/ash_graphql/HEAD/usage-rules.md --------------------------------------------------------------------------------