Skip to content

Commit

Permalink
chore: impl JsonObjectLike (tailcallhq#2385)
Browse files Browse the repository at this point in the history
Co-authored-by: Tushar Mathur <tusharmath@gmail.com>
  • Loading branch information
ssddOnTop and tusharmath committed Jul 9, 2024
1 parent 9ca04d6 commit a68b1c0
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 23 deletions.
4 changes: 2 additions & 2 deletions src/core/jit/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub struct Executor<Synth, IRExec> {

impl<Input, Output, Error, Synth, Exec> Executor<Synth, Exec>
where
Output: JsonLike<Output = Output> + Debug,
Output: JsonLike<Json = Output> + Debug,
Synth: Synthesizer<Value = Result<Output, Error>>,
Exec: IRExecutor<Input = Input, Output = Output, Error = Error>,
{
Expand Down Expand Up @@ -55,7 +55,7 @@ struct ExecutorInner<'a, Input, Output, Error, Exec> {

impl<'a, Input, Output, Error, Exec> ExecutorInner<'a, Input, Output, Error, Exec>
where
Output: JsonLike<Output = Output> + Debug,
Output: JsonLike<Json = Output> + Debug,
Exec: IRExecutor<Input = Input, Output = Output, Error = Error>,
{
fn new(
Expand Down
85 changes: 64 additions & 21 deletions src/core/json/json_like.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,38 @@ use std::collections::HashMap;

use async_graphql_value::ConstValue;

use crate::core::json::json_object_like::JsonObjectLike;

pub trait JsonLike {
type Output;
fn as_array_ok(&self) -> Result<&Vec<Self::Output>, &str>;
type Json;
type JsonObject: JsonObjectLike;

// Constructors
fn default() -> Self;
fn new_array(arr: Vec<Self::Json>) -> Self;
fn new(value: &Self::Json) -> &Self;

// Operators
fn as_array_ok(&self) -> Result<&Vec<Self::Json>, &str>;
fn as_object_ok(&self) -> Result<&Self::JsonObject, &str>;
fn as_str_ok(&self) -> Result<&str, &str>;
fn as_string_ok(&self) -> Result<&String, &str>;
fn as_i64_ok(&self) -> Result<i64, &str>;
fn as_u64_ok(&self) -> Result<u64, &str>;
fn as_f64_ok(&self) -> Result<f64, &str>;
fn as_bool_ok(&self) -> Result<bool, &str>;
fn as_null_ok(&self) -> Result<(), &str>;
fn as_option_ok(&self) -> Result<Option<&Self::Output>, &str>;
fn get_path<T: AsRef<str>>(&self, path: &[T]) -> Option<&Self::Output>;
fn get_key(&self, path: &str) -> Option<&Self::Output>;
fn new(value: &Self::Output) -> &Self;
fn group_by<'a>(&'a self, path: &'a [String]) -> HashMap<String, Vec<&'a Self::Output>>;
fn as_option_ok(&self) -> Result<Option<&Self::Json>, &str>;
fn get_path<T: AsRef<str>>(&self, path: &[T]) -> Option<&Self::Json>;
fn get_key(&self, path: &str) -> Option<&Self::Json>;
fn group_by<'a>(&'a self, path: &'a [String]) -> HashMap<String, Vec<&'a Self::Json>>;
}

impl JsonLike for serde_json::Value {
type Output = serde_json::Value;
fn as_array_ok(&self) -> Result<&Vec<Self::Output>, &str> {
type Json = serde_json::Value;
type JsonObject = serde_json::Map<String, serde_json::Value>;

fn as_array_ok(&self) -> Result<&Vec<Self::Json>, &str> {
self.as_array().ok_or("expected array")
}
fn as_str_ok(&self) -> Result<&str, &str> {
Expand All @@ -43,14 +55,14 @@ impl JsonLike for serde_json::Value {
self.as_null().ok_or("expected null")
}

fn as_option_ok(&self) -> Result<Option<&Self::Output>, &str> {
fn as_option_ok(&self) -> Result<Option<&Self::Json>, &str> {
match self {
serde_json::Value::Null => Ok(None),
_ => Ok(Some(self)),
}
}

fn get_path<T: AsRef<str>>(&self, path: &[T]) -> Option<&Self::Output> {
fn get_path<T: AsRef<str>>(&self, path: &[T]) -> Option<&Self::Json> {
let mut val = self;
for token in path {
val = match val {
Expand All @@ -65,11 +77,11 @@ impl JsonLike for serde_json::Value {
Some(val)
}

fn new(value: &Self::Output) -> &Self {
fn new(value: &Self::Json) -> &Self {
value
}

fn get_key(&self, path: &str) -> Option<&Self::Output> {
fn get_key(&self, path: &str) -> Option<&Self::Json> {
match self {
serde_json::Value::Object(map) => map.get(path),
_ => None,
Expand All @@ -83,16 +95,32 @@ impl JsonLike for serde_json::Value {
}
}

fn group_by<'a>(&'a self, path: &'a [String]) -> HashMap<String, Vec<&'a Self::Output>> {
fn group_by<'a>(&'a self, path: &'a [String]) -> HashMap<String, Vec<&'a Self::Json>> {
let src = gather_path_matches(self, path, vec![]);
group_by_key(src)
}

fn default() -> Self {
Self::Null
}

fn new_array(arr: Vec<Self::Json>) -> Self {
Self::Array(arr)
}

fn as_object_ok(&self) -> Result<&Self::JsonObject, &str> {
match self {
serde_json::Value::Object(map) => Ok(map),
_ => Err("expected object"),
}
}
}

impl JsonLike for async_graphql::Value {
type Output = async_graphql::Value;
type Json = async_graphql::Value;
type JsonObject = indexmap::IndexMap<async_graphql::Name, async_graphql::Value>;

fn as_array_ok(&self) -> Result<&Vec<Self::Output>, &str> {
fn as_array_ok(&self) -> Result<&Vec<Self::Json>, &str> {
match self {
ConstValue::List(seq) => Ok(seq),
_ => Err("array"),
Expand Down Expand Up @@ -141,14 +169,14 @@ impl JsonLike for async_graphql::Value {
}
}

fn as_option_ok(&self) -> Result<Option<&Self::Output>, &str> {
fn as_option_ok(&self) -> Result<Option<&Self::Json>, &str> {
match self {
ConstValue::Null => Ok(None),
_ => Ok(Some(self)),
}
}

fn get_path<T: AsRef<str>>(&self, path: &[T]) -> Option<&Self::Output> {
fn get_path<T: AsRef<str>>(&self, path: &[T]) -> Option<&Self::Json> {
let mut val = self;
for token in path {
val = match val {
Expand All @@ -163,11 +191,11 @@ impl JsonLike for async_graphql::Value {
Some(val)
}

fn new(value: &Self::Output) -> &Self {
fn new(value: &Self::Json) -> &Self {
value
}

fn get_key(&self, path: &str) -> Option<&Self::Output> {
fn get_key(&self, path: &str) -> Option<&Self::Json> {
match self {
ConstValue::Object(map) => map.get(&async_graphql::Name::new(path)),
_ => None,
Expand All @@ -180,10 +208,25 @@ impl JsonLike for async_graphql::Value {
}
}

fn group_by<'a>(&'a self, path: &'a [String]) -> HashMap<String, Vec<&'a Self::Output>> {
fn group_by<'a>(&'a self, path: &'a [String]) -> HashMap<String, Vec<&'a Self::Json>> {
let src = gather_path_matches(self, path, vec![]);
group_by_key(src)
}

fn default() -> Self {
Default::default()
}

fn new_array(arr: Vec<Self::Json>) -> Self {
ConstValue::List(arr)
}

fn as_object_ok(&self) -> Result<&Self::JsonObject, &str> {
match self {
ConstValue::Object(map) => Ok(map),
_ => Err("expected object"),
}
}
}

// Highly micro-optimized and benchmarked version of get_path_all
Expand Down
26 changes: 26 additions & 0 deletions src/core/json/json_object_like.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
use indexmap::IndexMap;

use crate::core::json::JsonLike;

pub trait JsonObjectLike {
type Value<'a>: JsonLike
where
Self: 'a;
fn get<'a>(&'a self, key: &'a str) -> Option<&Self::Value<'a>>;
}

impl JsonObjectLike for serde_json::Map<String, serde_json::Value> {
type Value<'a> = serde_json::Value;

fn get<'a>(&'a self, key: &'a str) -> Option<&Self::Value<'a>> {
self.get(key)
}
}

impl<V: JsonLike + Clone> JsonObjectLike for IndexMap<async_graphql_value::Name, V> {
type Value<'a> = V where V: 'a;

fn get<'a>(&'a self, key: &'a str) -> Option<&Self::Value<'a>> {
self.get(&async_graphql_value::Name::new(key))
}
}
3 changes: 3 additions & 0 deletions src/core/json/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
mod json_like;
mod json_object_like;
mod json_schema;

pub use json_like::*;
pub use json_object_like::*;
pub use json_schema::*;

1 comment on commit a68b1c0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

running 226 tests
test run_execution_spec::add-field-index-list.md ... ok
test run_execution_spec::add-field-many-list.md ... ok
test run_execution_spec::add-field-many.md ... ok
test run_execution_spec::add-field-modify.md ... ok
test run_execution_spec::add-field-with-modify.md ... ok
test run_execution_spec::add-field-with-composition.md ... ok
test run_execution_spec::add-field.md ... ok
test run_execution_spec::apollo-tracing.md ... ok
test run_execution_spec::async-cache-disabled.md ... ok
test run_execution_spec::async-cache-enable-multiple-resolvers.md ... FAILED
test run_execution_spec::async-cache-global.md ... FAILED
test run_execution_spec::async-cache-enabled.md ... FAILED
test run_execution_spec::async-cache-inflight-request.md ... FAILED
test run_execution_spec::auth-protected-without-auth.md ... ok
test run_execution_spec::auth-basic.md ... FAILED
test run_execution_spec::auth-jwt.md ... FAILED
test run_execution_spec::auth.md ... ok
test run_execution_spec::batching-disabled.md ... FAILED
test run_execution_spec::batching-default.md ... ok
test run_execution_spec::batching-group-by-default.md ... ok
test run_execution_spec::batching-group-by.md ... ok
test run_execution_spec::batching-post.md ... ok
test run_execution_spec::batching.md ... FAILED
test run_execution_spec::cache-control.md ... FAILED
test run_execution_spec::caching.md ... ok
test run_execution_spec::caching-collision.md ... ok
test run_execution_spec::call-graphql-datasource.md ... FAILED
test run_execution_spec::call-multiple-steps-piping.md ... FAILED
test run_execution_spec::call-mutation.md ... FAILED
test run_execution_spec::call-operator.md ... FAILED
test run_execution_spec::cors-allow-cred-false.md ... ok
test run_execution_spec::cors-invalid-expose-headers.md ... ok
test run_execution_spec::cors-invalid-headers.md ... ok
test run_execution_spec::cors-invalid-methods.md ... ok
test run_execution_spec::cors-allow-cred-true.md ... ok
test run_execution_spec::cors-invalid-origins.md ... ok
test run_execution_spec::cors-allow-cred-vary.md ... ok
test run_execution_spec::custom-headers.md ... ok
test run_execution_spec::dedupe_batch_query_execution.md ... FAILED
test run_execution_spec::default-value-arg.md ... FAILED
test run_execution_spec::experimental-headers-error.md ... ok
test run_execution_spec::default-value-config.md ... ok
test run_execution_spec::env-value.md ... ok
test run_execution_spec::experimental-headers.md ... FAILED
test run_execution_spec::graphql-dataloader-no-batch-request.md ... FAILED
test run_execution_spec::graphql-dataloader-batch-request.md ... FAILED
test run_execution_spec::graphql-datasource-errors.md ... FAILED
test run_execution_spec::graphql-datasource-mutation.md ... FAILED
test run_execution_spec::graphql-datasource-no-args.md ... FAILED
test run_execution_spec::graphql-datasource-with-args.md ... FAILED
test run_execution_spec::graphql-datasource-with-empty-enum.md ... ok
test run_execution_spec::graphql-datasource-with-mandatory-enum.md ... FAILED
test run_execution_spec::graphql-nested-datasource.md ... FAILED
test run_execution_spec::grpc-batch.md ... FAILED
test run_execution_spec::grpc-json.md ... FAILED
test run_execution_spec::grpc-error.md ... FAILED
test run_execution_spec::grpc-map.md ... FAILED
test run_execution_spec::grpc-oneof.md ... FAILED
test run_execution_spec::grpc-proto-with-same-package.md ... ok
test run_execution_spec::grpc-override-url-from-upstream.md ... ok
test run_execution_spec::grpc-reflection.md ... ok
test run_execution_spec::grpc-simple.md ... ok
test run_execution_spec::grpc-url-from-upstream.md ... ok
test run_execution_spec::https.md ... ok
test run_execution_spec::inline-field.md ... FAILED
test run_execution_spec::inline-index-list.md ... ok
test run_execution_spec::input-type-protected-error.md ... ok
test run_execution_spec::io-cache.md ... ok
test run_execution_spec::inline-many-list.md ... ok
test run_execution_spec::inline-many.md ... ok
test run_execution_spec::js-directive.md ... FAILED
test run_execution_spec::modified-field.md ... ok
test run_execution_spec::mutation-put.md ... FAILED
test run_execution_spec::mutation.md ... FAILED
test run_execution_spec::jsonplaceholder-call-post.md ... ok
test run_execution_spec::n-plus-one-list.md ... ok
test run_execution_spec::n-plus-one.md ... ok
test run_execution_spec::nested-objects.md ... ok
test run_execution_spec::nesting-level3.md ... ok
test run_execution_spec::nullable-arg-query.md ... FAILED
test run_execution_spec::omit-index-list.md ... ok
test run_execution_spec::omit-resolved-by-parent.md ... FAILED
test run_execution_spec::recursive-types-no-resolver.md ... ok
test run_execution_spec::omit-many.md ... ok
test run_execution_spec::recursive-types-json.md ... FAILED
test run_execution_spec::ref-other-nested.md ... ok
test run_execution_spec::recursive-types.md ... FAILED
test run_execution_spec::ref-other.md ... ok
test run_execution_spec::rename-field.md ... ok
test run_execution_spec::request-to-upstream-batching.md ... FAILED
test run_execution_spec::resolve-with-headers.md ... FAILED
test run_execution_spec::resolve-with-vars.md ... ok
test run_execution_spec::resolved-by-parent.md ... FAILED
test run_execution_spec::rest-api-error.md ... ok
test run_execution_spec::rest-api-post.md ... ok
test run_execution_spec::showcase.md ... ok
test run_execution_spec::rest-api.md ... ok
test run_execution_spec::test-add-field-error.md ... ok
test run_execution_spec::simple-graphql.md ... ok
test run_execution_spec::simple-query.md ... ok
test run_execution_spec::test-add-field-list.md ... ok
test run_execution_spec::test-all-blueprint-errors.md ... ok
test run_execution_spec::test-batch-operator-post.md ... ok
test run_execution_spec::test-add-field.md ... ok
test run_execution_spec::test-add-link-to-empty-config.md ... ok
test run_execution_spec::test-call-operator-errors.md ... ok
test run_execution_spec::test-conflict-allowed-headers.md ... ok
test run_execution_spec::test-conflict-vars.md ... ok
test run_execution_spec::test-batching-group-by.md ... ok
test run_execution_spec::test-cache.md ... ok
test run_execution_spec::test-dbl-usage-many.md ... ok
test run_execution_spec::test-custom-scalar.md ... ok
test run_execution_spec::test-directives-undef-null-fields.md ... ok
test run_execution_spec::test-duplicated-link.md ... ok
test run_execution_spec::test-empty-link.md ... ok
test run_execution_spec::test-custom-types.md ... ok
test run_execution_spec::test-enable-jit.md ... ok
test run_execution_spec::test-description-many.md ... ok
test run_execution_spec::test-enum-aliases.md ... ok
test run_execution_spec::test-enum-empty.md ... ok
test run_execution_spec::test-enum-default.md ... ok
test run_execution_spec::test-enum-merge.md ... ok
test run_execution_spec::test-expr-error.md ... ok
test run_execution_spec::test-expr-scalar-as-string.md ... ok
test run_execution_spec::test-expr-with-add-field.md ... ok
test run_execution_spec::test-expr-with-inline.md ... ok
test run_execution_spec::test-enum-description.md ... FAILED
test run_execution_spec::test-enum.md ... FAILED
test run_execution_spec::test-field-already-implemented-from-Interface.md ... ok
test run_execution_spec::test-graphqlsource-no-base-url.md ... ok
test run_execution_spec::test-expr-with-mustache.md ... ok
test run_execution_spec::test-groupby-without-batching.md ... ok
test run_execution_spec::test-grpc-group-by.md ... ok
test run_execution_spec::test-grpc-invalid-method-format.md ... ok
test run_execution_spec::test-grpc-invalid-proto-id.md ... ok
test run_execution_spec::test-grpc-missing-fields.md ... ok
test run_execution_spec::test-grpc-nested-data.md ... ok
test run_execution_spec::test-grpc-nested-optional.md ... ok
test run_execution_spec::test-grpc-optional.md ... ok
test run_execution_spec::test-grpc-proto-path.md ... ok
test run_execution_spec::test-grpc-service-method.md ... ok
test run_execution_spec::test-grpc-service.md ... ok
test run_execution_spec::test-expr.md ... ok
test run_execution_spec::test-hostname-faliure.md ... ok
test run_execution_spec::test-graphqlsource.md ... ok
test run_execution_spec::test-grpc.md ... ok
test run_execution_spec::test-http-baseurl.md ... ok
test run_execution_spec::test-http-with-add-field.md ... ok
test run_execution_spec::test-http-with-inline.md ... ok
test run_execution_spec::test-http-headers.md ... ok
test run_execution_spec::test-http-tmpl.md ... ok
test run_execution_spec::test-http-with-mustache-expr.md ... ok
test run_execution_spec::test-inline-error.md ... ok
test run_execution_spec::test-http.md ... ok
test run_execution_spec::test-inline-list.md ... ok
test run_execution_spec::test-inline.md ... ok
test run_execution_spec::test-input-out.md ... FAILED
test run_execution_spec::test-input-with-arg-out.md ... FAILED
test run_execution_spec::test-input-documentation.md ... ok
test run_execution_spec::test-interface-from-json.md ... ok
test run_execution_spec::test-invalid-query-in-http.md ... ok
test run_execution_spec::test-invalid-server.md ... ok
test run_execution_spec::test-js-multi-onRequest-handlers.md ... ok
test run_execution_spec::test-js-multiple-scripts.md ... ok
test run_execution_spec::test-interface-result.md ... ok
test run_execution_spec::test-interface.md ... ok
test run_execution_spec::test-lack-resolver.md ... ok
test run_execution_spec::test-merge-batch.md ... ok
test run_execution_spec::test-js-request-response-2.md ... ok
test run_execution_spec::test-js-request-response.md ... ok
test run_execution_spec::test-merge-nested.md ... ok
test run_execution_spec::test-merge-query.md ... ok
test run_execution_spec::test-merge-union.md ... ok
test run_execution_spec::test-missing-argument-on-all-resolvers.md ... ok
test run_execution_spec::test-missing-mutation-resolver.md ... ok
test run_execution_spec::test-missing-query-resolver.md ... ok
test run_execution_spec::test-missing-root-types.md ... ok
test run_execution_spec::test-missing-schema-query.md ... ok
test run_execution_spec::test-merge-right-with-link-config.md ... ok
test run_execution_spec::test-merge-server-sdl.md ... ok
test run_execution_spec::test-multiple-config-types.md ... FAILED
test run_execution_spec::test-multiple-resolvable-directives-on-field.md ... ok
test run_execution_spec::test-modify.md ... ok
test run_execution_spec::test-multi-interface.md ... ok
test run_execution_spec::test-nested-input.md ... ok
test run_execution_spec::test-no-base-url.md ... ok
test run_execution_spec::test-nested-link.md ... ok
test run_execution_spec::test-nested-value.md ... ok
test run_execution_spec::test-null-in-array.md ... ok
test run_execution_spec::test-null-in-object.md ... ok
test run_execution_spec::test-omit-list.md ... ok
test run_execution_spec::test-params-as-body.md ... FAILED
test run_execution_spec::test-omit.md ... ok
test run_execution_spec::test-query.md ... ok
test run_execution_spec::test-query-documentation.md ... ok
test run_execution_spec::test-response-header-value.md ... ok
test run_execution_spec::test-response-headers-multi.md ... ok
test run_execution_spec::test-response-headers-name.md ... ok
test run_execution_spec::test-ref-other.md ... ok
test run_execution_spec::test-response-header-merge.md ... ok
test run_execution_spec::test-scalars-builtin.md ... FAILED
test run_execution_spec::test-scalars-validation.md ... FAILED
test run_execution_spec::test-scalars-integers.md ... FAILED
test run_execution_spec::test-server-base-types.md ... ok
test run_execution_spec::test-scalars.md ... FAILED
test run_execution_spec::test-static-value.md ... ok
test run_execution_spec::test-set-cookie-headers.md ... FAILED
test run_execution_spec::test-undefined-query.md ... ok
test run_execution_spec::test-server-vars.md ... ok
test run_execution_spec::test-union-many-types.md ... ok
test run_execution_spec::test-union-same-types.md ... ok
test run_execution_spec::test-union-ambiguous.md ... FAILED
test run_execution_spec::test-tag.md ... ok
test run_execution_spec::test-upstream-headers.md ... ok
test run_execution_spec::undeclared-type-no-base-url.md ... ok
test run_execution_spec::undeclared-type.md ... ok
test run_execution_spec::test-union.md ... FAILED
test run_execution_spec::upstream-batching.md ... FAILED
test run_execution_spec::upstream-fail-request.md ... FAILED
test run_execution_spec::test-upstream.md ... ok
test run_execution_spec::with-args-url.md ... FAILED
test run_execution_spec::with-args.md ... FAILED
test run_execution_spec::with-nesting.md ... ok
test run_execution_spec::yaml-nested-unions.md ... ok
test run_execution_spec::yaml-union-in-type.md ... ok
test run_execution_spec::yaml-union.md ... ok

failures:

---- run_execution_spec::async-cache-enable-multiple-resolvers.md ----
test panicked: not yet implemented

---- run_execution_spec::async-cache-global.md ----
test panicked: not yet implemented

---- run_execution_spec::async-cache-enabled.md ----
test panicked: not yet implemented

---- run_execution_spec::async-cache-inflight-request.md ----
test panicked: not yet implemented

---- run_execution_spec::auth-basic.md ----
test panicked: snapshot assertion for 'auth-basic.md_1' failed in line 202

---- run_execution_spec::auth-jwt.md ----
test panicked: snapshot assertion for 'auth-jwt.md_1' failed in line 202

---- run_execution_spec::batching-disabled.md ----
test panicked: not yet implemented

---- run_execution_spec::batching.md ----
test panicked: not yet implemented

---- run_execution_spec::cache-control.md ----
test panicked: not yet implemented

---- run_execution_spec::call-graphql-datasource.md ----
test panicked: not yet implemented

---- run_execution_spec::call-multiple-steps-piping.md ----
test panicked: not yet implemented

---- run_execution_spec::call-mutation.md ----
test panicked: not yet implemented

---- run_execution_spec::call-operator.md ----
test panicked: not yet implemented

---- run_execution_spec::dedupe_batch_query_execution.md ----
test panicked: not yet implemented

---- run_execution_spec::default-value-arg.md ----
test panicked: not yet implemented

---- run_execution_spec::experimental-headers.md ----
test panicked: snapshot assertion for 'experimental-headers.md_0' failed in line 202

---- run_execution_spec::graphql-dataloader-no-batch-request.md ----
test panicked: not yet implemented

---- run_execution_spec::graphql-dataloader-batch-request.md ----
test panicked: not yet implemented

---- run_execution_spec::graphql-datasource-errors.md ----
test panicked: not yet implemented

---- run_execution_spec::graphql-datasource-mutation.md ----
test panicked: not yet implemented

---- run_execution_spec::graphql-datasource-no-args.md ----
test panicked: not yet implemented

---- run_execution_spec::graphql-datasource-with-args.md ----
test panicked: not yet implemented

---- run_execution_spec::graphql-datasource-with-mandatory-enum.md ----
test panicked: snapshot assertion for 'graphql-datasource-with-mandatory-enum.md_0' failed in line 202

---- run_execution_spec::graphql-nested-datasource.md ----
test panicked: not yet implemented

---- run_execution_spec::grpc-batch.md ----
test panicked: not yet implemented

---- run_execution_spec::grpc-json.md ----
test panicked: not yet implemented

---- run_execution_spec::grpc-error.md ----
test panicked: snapshot assertion for 'grpc-error.md_0' failed in line 202

---- run_execution_spec::grpc-map.md ----
test panicked: not yet implemented

---- run_execution_spec::grpc-oneof.md ----
test panicked: not yet implemented

---- run_execution_spec::inline-field.md ----
test panicked: snapshot assertion for 'inline-field.md_0' failed in line 202

---- run_execution_spec::js-directive.md ----
test panicked: snapshot assertion for 'js-directive.md_0' failed in line 202

---- run_execution_spec::mutation-put.md ----
test panicked: not yet implemented

---- run_execution_spec::mutation.md ----
test panicked: not yet implemented

---- run_execution_spec::nullable-arg-query.md ----
test panicked: not yet implemented

---- run_execution_spec::omit-resolved-by-parent.md ----
test panicked: snapshot assertion for 'omit-resolved-by-parent.md_0' failed in line 202

---- run_execution_spec::recursive-types-json.md ----
test panicked: snapshot assertion for 'recursive-types-json.md_0' failed in line 202

---- run_execution_spec::recursive-types.md ----
test panicked: snapshot assertion for 'recursive-types.md_0' failed in line 202

---- run_execution_spec::request-to-upstream-batching.md ----
test panicked: not yet implemented

---- run_execution_spec::resolve-with-headers.md ----
test panicked: snapshot assertion for 'resolve-with-headers.md_0' failed in line 202

---- run_execution_spec::resolved-by-parent.md ----
test panicked: snapshot assertion for 'resolved-by-parent.md_0' failed in line 202

---- run_execution_spec::test-enum-description.md ----
test panicked: not yet implemented

---- run_execution_spec::test-enum.md ----
test panicked: not yet implemented

---- run_execution_spec::test-input-out.md ----
test panicked: not yet implemented

---- run_execution_spec::test-input-with-arg-out.md ----
test panicked: not yet implemented

---- run_execution_spec::test-multiple-config-types.md ----
test panicked: not yet implemented

---- run_execution_spec::test-params-as-body.md ----
test panicked: not yet implemented

---- run_execution_spec::test-scalars-builtin.md ----
test panicked: not yet implemented

---- run_execution_spec::test-scalars-validation.md ----
test panicked: not yet implemented

---- run_execution_spec::test-scalars-integers.md ----
test panicked: not yet implemented

---- run_execution_spec::test-scalars.md ----
test panicked: not yet implemented

---- run_execution_spec::test-set-cookie-headers.md ----
test panicked: not yet implemented

---- run_execution_spec::test-union-ambiguous.md ----
test panicked: snapshot assertion for 'test-union-ambiguous.md_3' failed in line 202

---- run_execution_spec::test-union.md ----
test panicked: snapshot assertion for 'test-union.md_3' failed in line 202

---- run_execution_spec::upstream-batching.md ----
test panicked: not yet implemented

---- run_execution_spec::upstream-fail-request.md ----
test panicked: snapshot assertion for 'upstream-fail-request.md_0' failed in line 202

---- run_execution_spec::with-args-url.md ----
test panicked: not yet implemented

---- run_execution_spec::with-args.md ----
test panicked: not yet implemented

failures:
run_execution_spec::async-cache-enable-multiple-resolvers.md
run_execution_spec::async-cache-global.md
run_execution_spec::async-cache-enabled.md
run_execution_spec::async-cache-inflight-request.md
run_execution_spec::auth-basic.md
run_execution_spec::auth-jwt.md
run_execution_spec::batching-disabled.md
run_execution_spec::batching.md
run_execution_spec::cache-control.md
run_execution_spec::call-graphql-datasource.md
run_execution_spec::call-multiple-steps-piping.md
run_execution_spec::call-mutation.md
run_execution_spec::call-operator.md
run_execution_spec::dedupe_batch_query_execution.md
run_execution_spec::default-value-arg.md
run_execution_spec::experimental-headers.md
run_execution_spec::graphql-dataloader-no-batch-request.md
run_execution_spec::graphql-dataloader-batch-request.md
run_execution_spec::graphql-datasource-errors.md
run_execution_spec::graphql-datasource-mutation.md
run_execution_spec::graphql-datasource-no-args.md
run_execution_spec::graphql-datasource-with-args.md
run_execution_spec::graphql-datasource-with-mandatory-enum.md
run_execution_spec::graphql-nested-datasource.md
run_execution_spec::grpc-batch.md
run_execution_spec::grpc-json.md
run_execution_spec::grpc-error.md
run_execution_spec::grpc-map.md
run_execution_spec::grpc-oneof.md
run_execution_spec::inline-field.md
run_execution_spec::js-directive.md
run_execution_spec::mutation-put.md
run_execution_spec::mutation.md
run_execution_spec::nullable-arg-query.md
run_execution_spec::omit-resolved-by-parent.md
run_execution_spec::recursive-types-json.md
run_execution_spec::recursive-types.md
run_execution_spec::request-to-upstream-batching.md
run_execution_spec::resolve-with-headers.md
run_execution_spec::resolved-by-parent.md
run_execution_spec::test-enum-description.md
run_execution_spec::test-enum.md
run_execution_spec::test-input-out.md
run_execution_spec::test-input-with-arg-out.md
run_execution_spec::test-multiple-config-types.md
run_execution_spec::test-params-as-body.md
run_execution_spec::test-scalars-builtin.md
run_execution_spec::test-scalars-validation.md
run_execution_spec::test-scalars-integers.md
run_execution_spec::test-scalars.md
run_execution_spec::test-set-cookie-headers.md
run_execution_spec::test-union-ambiguous.md
run_execution_spec::test-union.md
run_execution_spec::upstream-batching.md
run_execution_spec::upstream-fail-request.md
run_execution_spec::with-args-url.md
run_execution_spec::with-args.md

test result: FAILED. 169 passed; 57 failed; 0 ignored; 0 measured; 0 filtered out; finished in 12.64s

Please sign in to comment.