Michael Jones
06/30/2018, 2:56 AMinfo
object in prisma-binding? Basically, always add a field that should be grabbed regardless of the info
object's contents.medelman
06/30/2018, 11:04 AMMichael Jones
06/30/2018, 3:53 PMme
from graphcool. Along with whatever fields I am trying to grab from me
I would also always like to make sure the securityToken
field is grabbed as well. So for example, if I did me { id name }
I would like it to append the securityToken
to that in the resolver, so it would grab me { id name securityToken }
. Simply, I am just trying to always add on a static field to the info object inside of the resolver.Michael Jones
07/01/2018, 5:10 PMmedelman
07/01/2018, 5:12 PMmedelman
07/01/2018, 5:14 PMtype UserWithCreds {
user: User!
cred: String!
}
Michael Jones
07/01/2018, 11:02 PM