Crate query_tests_setup
source ·Re-exports
pub use query_core;
Structs
- A field directive, e.g.
@map("_id")
. - ID field definition, e.g.
#id(id, Int, @id @test.SmallInt)
- M2m field definition, e.g.
#m2m(posts, Post[], id, String, "name")
- This is a temporary implementation detail for
tracing
logs in tests. Instead of going throughstd::io::stderr
, it goes through the specific local stderr handle used byeprintln
anddbg
, allowing logs to appear in specific test outputs for readability. - QueryParams enables parsing the generated id(s) of mutations sent to the Query Engine so that it can be reused in subsequent queries
- Direct engine runner.
- The central test configuration.
Enums
- A datamodel fragment is the parsed version of a
#<ident>(...)
template string. - Wrapper for general argument parsing.
Constants
Statics
- Test configuration, loaded once at runtime.
- Engine protocol used to run tests. Either ‘graphql’ or ‘json’.
- The log level from the environment.
Traits
- Taken from Reddit. Enables taking an async function pointer which takes references as param https://www.reddit.com/r/rust/comments/jvqorj/hrtb_with_async_functions/
- The main trait a datamodel renderer for a connector has to implement.
Functions
- Main entry point into the template parsing. Parses a schema fragment of the form
#<fragment_ident>...<eol>
. - Parses the JSON result of mutation sent to the Query Engine in order to extract the generated compound ids. Returns a string that’s already formatted to be included in another query. eg: { “id_1_id_2”: { id_1: “my_fancy_id_1”, id_2: “my_fancy_id_2” } }
- Parses the JSON result of mutation sent to the Query Engine in order to extract the generated id. Returns a string that’s already formatted to be included in another query. eg: { “id”: “my_fancy_id” }
- Performs the same extraction as
parse_compound_id
but for an array - Performs the same extraction as
parse_id
but for an array - Render the complete datamodel with all bells and whistles.