Skip to content

Commit

Permalink
coderabbitai changes
Browse files Browse the repository at this point in the history
  • Loading branch information
meetulr committed Nov 2, 2024
1 parent 3220b37 commit 4fc6379
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "./build/server.js",
"scripts": {
"build": "tsc --pretty --project tsconfig.build.json",
"dev": "concurrently \"tsx --watch ./src/index.ts\" \"graphql-codegen --watch\"",
"dev": "concurrently \"tsx ./src/index.ts\" \"graphql-codegen --watch\"",
"minio:check": "tsc ./src/minioInstallationCheck.ts --outDir ./build && node ./build/minioInstallationCheck.js",
"dev:with-minio": "concurrently \"npm run minio:check\" \"tsx --watch ./src/index.ts\" \"graphql-codegen --watch\"",
"start:with-minio": "concurrently \"npm run minio:check\" \"cross-env pm2-runtime start ./build/server.js\"",
Expand Down
2 changes: 1 addition & 1 deletion src/resolvers/UserTag/usersToAssignTo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const usersToAssignTo: UserTagResolvers["usersToAssignTo"] = async (
{
$match: {
...totalCountFilter,
joinedOrganizations: parent.organizationId,
joinedOrganizations: { $in: [parent.organizationId] },
},
},
...commonPipeline,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import type {
*/
type UserTagGraphQLConnectionFilter =
| {
_id: {
_id?: {
$lt: string;
};
name: {
$regex: RegExp;
};
}
| {
_id: {
_id?: {
$gt: string;
};
name: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type {
*/
type UserTagMemberGraphQLConnectionFilter =
| {
_id: {
_id?: {
$lt: Types.ObjectId;
};
firstName: {
Expand All @@ -21,7 +21,7 @@ type UserTagMemberGraphQLConnectionFilter =
};
}
| {
_id: {
_id?: {
$gt: Types.ObjectId;
};
firstName: {
Expand Down

0 comments on commit 4fc6379

Please sign in to comment.