Skip to content

Commit 2903e45

Browse files
authored
Fix Group by actor field (#15215)
1 parent 580ce31 commit 2903e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/twenty-server/src/engine/api/graphql/workspace-schema-builder/graphql-type-generators/input-types/group-by-input/composite-field-metadata-group-by-gql-input-type.generator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class CompositeFieldMetadataGroupByGqlInputTypeGenerator {
5656
}
5757

5858
// Skip hidden fields
59-
if (property.hidden === true || property.hidden === 'input') {
59+
if (property.hidden === true) {
6060
continue;
6161
}
6262

0 commit comments

Comments
 (0)