Closed bloodwithmilk25 closed 1 year ago
Merging #156 into master will decrease coverage by
0.02%
. The diff coverage is0.00%
.
@@ Coverage Diff @@
## master #156 +/- ##
==========================================
- Coverage 53.65% 53.63% -0.03%
==========================================
Files 24 24
Lines 1968 1969 +1
==========================================
Hits 1056 1056
- Misses 912 913 +1
Impacted Files | Coverage Δ | |
---|---|---|
graphene_django_extras/mutation.py | 32.27% <0.00%> (-0.21%) |
:arrow_down: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update abb5a33...009b398. Read the comment docs.
There was no distinction between
create
andupdate
operations, thusupdate
did not have an ID argument in it. I made it soupdate
takes ID argument not frominput
but from a level higher, just like thedelete
does. Also, now that bothupdate
anddelete
take it, I could remove theelse
block.