We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc78de7 commit 6875221Copy full SHA for 6875221
frontend/src/modules/member/member-service.js
@@ -134,11 +134,17 @@ export class MemberService {
134
segments,
135
}) {
136
const payload = {
137
- filter: query ? {
138
- displayName: {
139
- textContains: query,
140
- },
141
- } : {},
+ filter: {
+ and: [
+ { isBot: { not: true } },
+ { isOrganization: { not: true } },
+ ...(query ? [{
142
+ displayName: {
143
+ textContains: query,
144
+ },
145
+ }] : []),
146
+ ],
147
148
offset: 0,
149
orderBy: 'activityCount_DESC',
150
limit,
0 commit comments