Allow resolution of non-acl fields

gql_cataclysm
noah metz 2023-09-20 11:28:44 -06:00
parent b09e150c46
commit 0fc6215448
1 changed files with 1 additions and 1 deletions

@ -656,7 +656,7 @@ func (ctx *GQLExtContext) GetACLFields(obj_name string, names []string) (map[Ext
default:
field, exists := ctx.Fields[name]
if exists == false {
return nil, fmt.Errorf("%s is not a know field in GQLContext, cannot resolve", name)
continue
}
ext, exists := ext_fields[field.Ext]