Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for null literals #401

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

evulse
Copy link

@evulse evulse commented Sep 23, 2018

Choice of implementation was based on not breaking existing code. For instance the following will not break with this change

price, priceOk := params.Args["price"].(float64)

However you can now detect null by adding another type assertion

price, priceOk := params.Args["price"].(float64)
_, priceNull := params.Args["price"].(graphql.NullValue)

As you can see the value of graphql.NullValue is irrelevant, we just need to test for its existence.

The same thing can be accomplished by using a type switch, which there is an example of in the new example crud-null

The motivation for this change is to bring inline with spec and that forcing null values on database fields is rather common. Plus obviously needed this functionality for current application use.

Also addresses #178

@coveralls
Copy link

coveralls commented Sep 23, 2018

Coverage Status

Coverage decreased (-0.2%) to 91.545% when pulling fccf08b on carted:master into a7e15c0 on graphql-go:master.

@ccbrown
Copy link
Contributor

ccbrown commented Oct 2, 2018

@evulse Glad to see someone working on support for this! One question though: Why is adding a new type to represent null values necessary? Couldn't we just do this using nil?

func main() {
	m := map[string]interface{}{}

	_, priceOk := m["foo"].(float64)
	v, priceNull := m["foo"]
	fmt.Println(priceOk, priceNull && v == nil)

	m["foo"] = nil

	_, priceOk = m["foo"].(float64)
	v, priceNull = m["foo"]
	fmt.Println(priceOk, priceNull && v == nil)
}
false false
false true

https://play.golang.org/p/tXyzbrMsXHy

@evulse
Copy link
Author

evulse commented Oct 9, 2018

@ccbrown I guess thats completely possible, I guess it was more to avoid any possible situations of the value being nil. Instead of going through and confirming that nil is never possibly outputted from maybe a nil pointer or struct it was easier to just add a new type knowing that nothing could possibly be using the new type.

@clery
Copy link

clery commented Mar 15, 2019

Any news on this pull request ?

@cettoana
Copy link

Facing a problem and I think this pull request fixes that,
any updates of this PR?

@jorgebay
Copy link

@chris-ramon Do you have some time to review this PR?

What can I do to help getting this patch merged?

@seriallink
Copy link

Are there any chances this pull request will be merged into master? Is there anything we can do to help?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

9 participants