Hi,
There's a patch(fix-error-returning-null-attribute-values.patch) available for download, once downloaded, apply the patch through command line as below
patch -p1 < fix-error-returning-null-attribute-values.patch
In your GraphQL, change the "application_for" field to nullable
Then handle null checks in frontend
if (category.application_for !== null) {
// Proceed with using category.application_for
}
With above you can handle for null case.
Thanks,
Kind regards,
Kiran Buthpur