~Anyone run into an issue in Apollo mutations wher...
# orm-help
k
Anyone run into an issue in Apollo mutations where if you pass a variable that is just the integer
0
it'll be ignored and not sent in the request to the server?
Whoops, never mind. Just a silly mistake in my own resolver code. ^o^ Just needed to use my own patented "Truthy Zero" function haha.
Copy code
function t0(input) {
  return !!(input || input === 0);
}