Open itssharmasandeep opened 1 year ago
Merging #2419 (100d43c) into main (02e5209) will decrease coverage by
25.83%
. The diff coverage is0.00%
.
@@ Coverage Diff @@
## main #2419 +/- ##
===========================================
- Coverage 82.83% 57.00% -25.83%
===========================================
Files 921 921
Lines 20547 20549 +2
Branches 3241 3243 +2
===========================================
- Hits 17020 11714 -5306
- Misses 3402 8445 +5043
- Partials 125 390 +265
Files Changed | Coverage Ξ | |
---|---|---|
projects/graphql-client/src/graphql-config.ts | 100.00% <ΓΈ> (ΓΈ) |
|
...ects/graphql-client/src/graphql-request.service.ts | 10.44% <0.00%> (-83.50%) |
:arrow_down: |
... and 211 files with indirect coverage changes
:mega: Weβre building smart automated test selection to slash your CI/CD build times. Learn more
βββββββ4 filesβ Β±0βββββ310 suitesβ Β±0βββ49m 59s :stopwatch: + 6m 59s 1β123 tests Β±0ββ1β117 :heavy_check_mark: β-β6ββ0 :zzz: Β±0ββ6 :x: +6β 1β133 runsβ Β±0ββ1β127 :heavy_check_mark: β-β6ββ0 :zzz: Β±0ββ6 :x: +6β
For more details on these failures, see this check.
Results for commit 100d43cc.βΒ± Comparison against base commit 02e52095.
β οΈ Issue
Currently, we fire a lot of queries of the same type, for example: we may fire up to 10 different entity queries for different use cases. Since we have a number of queries of the same type, debugging becomes difficult for the teams as they have to look for the schema to realize which query is failing and what is the use case.
π‘ Solution
Added an optional attribute
name
in the Graphql options which can be used to fire a names query depending upon the use caseBefore
After