I have an address_1 field in my Postgres DB schema for my address table. My GraphQL mutation has address1 field and the input type definition on the BE has argument :address_1, String, 'Address', required: true.
No error is raised but in the resolve method when I access the param I have it as address1 which is of course not ideal. Is this the intended behavior? If so, why?
I have an
address_1field in my Postgres DB schema for my address table. My GraphQL mutation hasaddress1field and the input type definition on the BE hasargument :address_1, String, 'Address', required: true.No error is raised but in the resolve method when I access the param I have it as
address1which is of course not ideal. Is this the intended behavior? If so, why?