Master and fork not behaving the same

I’ve got a sample project (13129) with two environments master and a fork.
In this project I have the following type
Test with to fields, title and bool

And the following records [{title: “bool = false”, bool: false}, {title: “bool = true”, bool: true }

Running the following query:
query {
allTests {
title
bool
}
}

Results in different responses in the two different envs.
Master:
{
“data”: {
“allTests”: [
{
“title”: “Bool = false”,
“bool”: false
},
{
“title”: “Bool = true”,
“bool”: true
}
]
}
}
(Expected)

and in the fork:
{
“data”: {
“allTests”: [
{
“title”: “Bool = false”,
“bool”: null
},
{
“title”: “Bool = true”,
“bool”: true
}
]
}
}

Notice false transforms to null. (Not expected)

hey @mats-ola.persson thank you very much for the detailed report.

We’ll have a look at this and get back to you, seems like a bug to me.

thanks @mats-ola.persson, we’ve reproduced the bug and deployed a fix! if you fork your environment again you should see a false value instead of null!