Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance GraphQL Endpoints to Support Distinct Filtering for Issues and Releases #1154

Merged
merged 9 commits into from
Mar 29, 2025

Conversation

rishyym0927
Copy link
Contributor

@rishyym0927 rishyym0927 commented Mar 21, 2025

Resolves #1074

This PR enhances the GraphQL endpoints to support a distinct parameter, ensuring that issues and releases return unique results based on their authors and associated projects. This prevents multiple items from the same author or project from appearing consecutively in the results.

Changes:

  1. Added distinct filtering to return unique issues per author and repository.
  2. Applied distinct on author_id and repository_id to avoid duplicate releases from the same author or project.
  3. Introduced distinct: Boolean argument to allow users to enable or disable distinct filtering.

image

Copy link
Contributor

coderabbitai bot commented Mar 21, 2025

Summary by CodeRabbit

  • New Features
    • Added a distinct filter option for GitHub issues and releases, enabling unique results based on key attributes.
  • Enhancements
    • Increased the default number of recent issues returned.
    • Updated query parameters on the main page to leverage the new distinct filtering capability for more refined results.

Walkthrough

This pull request updates GraphQL endpoints for GitHub issues and releases by introducing a new distinct parameter. In the backend, both the IssueQuery and ReleaseQuery classes now accept a distinct parameter (defaulting to False) and have updated method signatures and documentation. The issue query’s default limit is increased from 6 to 15. The corresponding frontend GraphQL query and component have also been modified to pass the new distinct variable, ensuring the data returned is filtered for distinct values where required.

Changes

File(s) Change Summary
backend/apps/.../queries/issue.py, backend/apps/.../queries/release.py Added a distinct parameter (default False) to recentIssues/recentReleases fields, updated method signatures (issues: limit changed from 6 to 15) and enhanced documentation; incorporated conditional filtering for distinct values.
frontend/src/api/queries/homeQueries.ts, frontend/src/pages/Home.tsx Updated the GraphQL query signature to include a new $distinct variable and modified the useQuery hook invocation to pass { distinct: true } for filtering results.

Assessment against linked issues

Objective Addressed Explanation
Extend GraphQL endpoints to accept distinct parameter for unique issues/releases (#1074)

Possibly related PRs

Suggested labels

backend-tests

Suggested reviewers

  • kasya

📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 787c0a3 and 9794e64.

📒 Files selected for processing (3)
  • backend/apps/github/graphql/queries/issue.py (2 hunks)
  • backend/apps/github/graphql/queries/release.py (2 hunks)
  • frontend/src/pages/Home.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (3)
  • frontend/src/pages/Home.tsx
  • backend/apps/github/graphql/queries/issue.py
  • backend/apps/github/graphql/queries/release.py

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@rishyym0927 rishyym0927 changed the title Recent Enhance GraphQL Endpoints to Support Distinct Filtering for Issues and Releases Mar 21, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (5)
backend/apps/github/graphql/queries/issue.py (2)

13-17: Clean implementation of distinct parameter

The distinct parameter is properly added to the GraphQL field definition with an appropriate default value of False, making it backward compatible with existing queries.

However, there are trailing whitespace issues on lines 14 and 15.

-    recent_issues = graphene.List(
-        IssueNode, 
-        limit=graphene.Int(default_value=15), 
-        distinct=graphene.Boolean(default_value=False)
-    )
+    recent_issues = graphene.List(
+        IssueNode,
+        limit=graphene.Int(default_value=15),
+        distinct=graphene.Boolean(default_value=False)
+    )
🧰 Tools
🪛 Ruff (0.8.2)

14-14: Trailing whitespace

Remove trailing whitespace

(W291)


15-15: Trailing whitespace

Remove trailing whitespace

(W291)


19-26: Well-implemented distinct filtering logic

The resolver method has been updated to include the new distinct parameter with a default value that maintains backward compatibility. The ordering strategy is well thought out - ordering by author_id and repository_id first ensures consistent results when applying the distinct filter.

However, there are a few issues to fix:

  1. Trailing whitespace on line 21
  2. Line 24 exceeds the line length limit (118 > 99)
  3. The duplicate ordering in the distinct clause is unnecessary since you already ordered the query on line 21
-    def resolve_recent_issues(root, info, limit=15, distinct=False):
-        """Resolve recent issue."""
-        query = Issue.objects.order_by("author_id", "repository_id", "-created_at")  
-
-        if distinct:
-            query = query.order_by("author_id", "repository_id", "-created_at").distinct("author_id", "repository_id")
-
-        return query[:limit]
+    def resolve_recent_issues(root, info, limit=15, distinct=False):
+        """Resolve recent issues with optional distinct filtering."""
+        query = Issue.objects.order_by("author_id", "repository_id", "-created_at")
+
+        if distinct:
+            query = query.distinct("author_id", "repository_id")
+
+        return query[:limit]
🧰 Tools
🪛 Ruff (0.8.2)

21-21: Trailing whitespace

Remove trailing whitespace

(W291)


24-24: Line too long (118 > 99)

(E501)

backend/apps/github/graphql/queries/release.py (1)

19-31: Good implementation of distinct filtering logic

The resolver method has been properly updated with:

  1. An improved docstring that clearly explains the new functionality
  2. Consistent ordering strategy (author_id, repository_id, -published_at)
  3. Proper distinct filtering when the parameter is enabled

However, there are trailing whitespace issues on lines 19, 25, and 28 that should be fixed.

-    def resolve_recent_releases(root, info, limit=15, distinct=False):  
-        """Resolve recent releases with optional distinct filtering."""
-        query = Release.objects.filter(
-            is_draft=False,
-            is_pre_release=False,
-            published_at__isnull=False,
-        ).order_by("author_id", "repository_id", "-published_at")  
-
-        if distinct:
-            query = query.distinct("author_id", "repository_id") 
-
-        return query[:limit]
+    def resolve_recent_releases(root, info, limit=15, distinct=False):
+        """Resolve recent releases with optional distinct filtering."""
+        query = Release.objects.filter(
+            is_draft=False,
+            is_pre_release=False,
+            published_at__isnull=False,
+        ).order_by("author_id", "repository_id", "-published_at")
+
+        if distinct:
+            query = query.distinct("author_id", "repository_id")
+
+        return query[:limit]
🧰 Tools
🪛 Ruff (0.8.2)

19-19: Trailing whitespace

Remove trailing whitespace

(W291)


25-25: Trailing whitespace

Remove trailing whitespace

(W291)


28-28: Trailing whitespace

Remove trailing whitespace

(W291)

backend/apps/owasp/graphql/nodes/project.py (2)

71-78: Enhance docstring for consistency

The method implementation looks good, but the docstring could be improved to match the style used in other resolvers and include parameter descriptions.

  def resolve_recent_releases(self, info, distinct=False):
-     """Resolve recent releases with optional distinct filtering."""
+     """Resolve recent releases with optional distinct filtering.
+     
+     Parameters:
+     - info: The GraphQL context and information.
+     - distinct (bool): Whether to return distinct releases based on author and repository.
+     
+     Returns:
+     - A list of recent releases, potentially filtered for distinct authors and repositories.
+     """
      query = self.published_releases.order_by("author_id", "repository_id", "-published_at")

      if distinct:
-         query = query.distinct("author_id", "repository_id")  
+         query = query.distinct("author_id", "repository_id")

      return query[:RECENT_RELEASES_LIMIT]
🧰 Tools
🪛 Ruff (0.8.2)

76-76: Trailing whitespace

Remove trailing whitespace

(W291)


62-78: Consider adding a limit parameter to recent_releases resolver

The resolve_recent_issues method accepts a configurable limit parameter, but resolve_recent_releases uses a hardcoded constant. For API consistency, consider adding a similar limit parameter to the resolve_recent_releases method.

- def resolve_recent_releases(self, info, distinct=False):
+ def resolve_recent_releases(self, info, limit=RECENT_RELEASES_LIMIT, distinct=False):
      """Resolve recent releases with optional distinct filtering."""
      query = self.published_releases.order_by("author_id", "repository_id", "-published_at")

      if distinct:
          query = query.distinct("author_id", "repository_id")

-     return query[:RECENT_RELEASES_LIMIT]
+     return query[:limit]
🧰 Tools
🪛 Ruff (0.8.2)

62-62: First argument of a method should be named self

Rename root to self

(N805)


62-62: Trailing whitespace

Remove trailing whitespace

(W291)


64-64: Undefined name Issue

(F821)


64-64: Trailing whitespace

Remove trailing whitespace

(W291)


67-67: Trailing whitespace

Remove trailing whitespace

(W291)


76-76: Trailing whitespace

Remove trailing whitespace

(W291)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e1e138a and fd7f0a1.

📒 Files selected for processing (5)
  • backend/apps/github/graphql/queries/issue.py (1 hunks)
  • backend/apps/github/graphql/queries/release.py (1 hunks)
  • backend/apps/owasp/graphql/nodes/project.py (2 hunks)
  • frontend/src/api/queries/homeQueries.ts (3 hunks)
  • frontend/src/pages/Home.tsx (1 hunks)
🧰 Additional context used
🧬 Code Definitions (3)
frontend/src/pages/Home.tsx (1)
frontend/src/api/queries/homeQueries.ts (1) (1)
  • GET_MAIN_PAGE_DATA (3-81)
backend/apps/github/graphql/queries/release.py (1)
backend/apps/owasp/graphql/nodes/project.py (1) (1)
  • resolve_recent_releases (71-78)
backend/apps/owasp/graphql/nodes/project.py (2)
backend/apps/github/graphql/queries/issue.py (1) (1)
  • resolve_recent_issues (19-26)
backend/apps/github/graphql/queries/release.py (1) (1)
  • resolve_recent_releases (19-30)
🪛 Ruff (0.8.2)
backend/apps/github/graphql/queries/issue.py

14-14: Trailing whitespace

Remove trailing whitespace

(W291)


15-15: Trailing whitespace

Remove trailing whitespace

(W291)


21-21: Trailing whitespace

Remove trailing whitespace

(W291)


24-24: Line too long (118 > 99)

(E501)

backend/apps/github/graphql/queries/release.py

19-19: Trailing whitespace

Remove trailing whitespace

(W291)


25-25: Trailing whitespace

Remove trailing whitespace

(W291)


28-28: Trailing whitespace

Remove trailing whitespace

(W291)

backend/apps/owasp/graphql/nodes/project.py

62-62: First argument of a method should be named self

Rename root to self

(N805)


62-62: Trailing whitespace

Remove trailing whitespace

(W291)


64-64: Undefined name Issue

(F821)


64-64: Trailing whitespace

Remove trailing whitespace

(W291)


67-67: Trailing whitespace

Remove trailing whitespace

(W291)


76-76: Trailing whitespace

Remove trailing whitespace

(W291)

🔇 Additional comments (7)
frontend/src/pages/Home.tsx (1)

37-39: Looks good - Added distinct parameter to query!

The update to include { distinct: true } in the useQuery hook properly implements the new feature to fetch distinct results for issues and releases. This change aligns perfectly with the PR objective of preventing consecutive items from the same author or project.

frontend/src/api/queries/homeQueries.ts (3)

4-4: Correctly added distinct parameter to query definition

The GraphQL query now accepts the Boolean parameter that will be used to control distinct filtering.


35-35: Properly implemented distinct parameter for recent issues

The distinct parameter is correctly passed to the recentIssues query, allowing the backend to filter unique issues by author and repository.


47-47: Properly implemented distinct parameter for recent releases

The distinct parameter is correctly passed to the recentReleases query, enabling filtering of unique releases by author and repository.

backend/apps/github/graphql/queries/release.py (1)

13-17: Well-structured GraphQL field definition

The addition of the distinct parameter to the recent_releases field is implemented correctly with an appropriate default value to maintain backward compatibility.

backend/apps/owasp/graphql/nodes/project.py (2)

22-25: LGTM! Good addition of distinct parameter

The introduction of a distinct parameter with a default value of False is a good enhancement, allowing clients to optionally request unique issues.


26-29: LGTM! Consistent implementation for recent_releases

The implementation mirrors the approach used for recent_issues, maintaining a consistent API design across similar GraphQL fields.

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
backend/apps/owasp/graphql/nodes/project.py (2)

62-79: Improve docstring formatting and consider moving import statement.

The resolver method looks good and addresses previous review comments by using self instead of root and including the Issue import. However, there are still some docstring formatting issues and an import that should be at the top of the file.

 def resolve_recent_issues(self, info, limit=RECENT_ISSUES_LIMIT, distinct=False):
     """Resolve recent issues with optional distinct filtering.
     
     Parameters:
-    - info: The GraphQL context and information.
-    - limit (int): The maximum number of issues to return.
-    - distinct (bool): Whether to return distinct issues based on author and repository.
+    ----------
+    info
+        The GraphQL context and information.
+    limit : int
+        The maximum number of issues to return.
+    distinct : bool
+        Whether to return distinct issues based on author and repository.
     
     Returns:
-    - A list of recent issues, potentially filtered for distinct authors and repositories.
+    -------
+    list
+        A list of recent issues, potentially filtered for distinct authors and repositories.
     """
     from apps.github.models import Issue
     query = Issue.objects.order_by("author_id", "repository_id", "-created_at")

Also, consider moving the Issue import to the top of the file for better performance:

 import graphene
 
 from apps.github.graphql.nodes.issue import IssueNode
 from apps.github.graphql.nodes.release import ReleaseNode
 from apps.github.graphql.nodes.repository import RepositoryNode
+from apps.github.models import Issue
 from apps.owasp.graphql.nodes.common import GenericEntityNode
 from apps.owasp.models.project import Project
🧰 Tools
🪛 Ruff (0.8.2)

62-62: Missing argument descriptions in the docstring for resolve_recent_issues: distinct, info, limit

(D417)


64-64: Blank line contains whitespace

Remove whitespace from blank line

(W293)


65-65: Missing dashed underline after section ("Parameters")

Add dashed line under "Parameters"

(D407)


65-65: Section name should end with a newline ("Parameters")

Add newline after "Parameters"

(D406)


69-69: Blank line contains whitespace

Remove whitespace from blank line

(W293)


70-70: Missing blank line after last section ("Returns")

Add blank line after "Returns"

(D413)


70-70: Missing dashed underline after section ("Returns")

Add dashed line under "Returns"

(D407)


70-70: Section name should end with a newline ("Returns")

Add newline after "Returns"

(D406)


81-88: Improve docstring and fix trailing whitespace.

The implementation of the resolver is good, but the docstring should be improved to match the style of other resolvers in the file, and there's a trailing whitespace that should be removed.

 def resolve_recent_releases(self, info, distinct=False):
-    """Resolve recent releases with optional distinct filtering."""
+    """Resolve recent releases with optional distinct filtering.
+    
+    Parameters:
+    ----------
+    info
+        The GraphQL context and information.
+    distinct : bool
+        Whether to return distinct releases based on author and repository.
+    
+    Returns:
+    -------
+    list
+        A list of recent releases, potentially filtered for distinct authors and repositories.
+    """
     query = self.published_releases.order_by("author_id", "repository_id", "-published_at")
 
     if distinct:
-        query = query.distinct("author_id", "repository_id")  
+        query = query.distinct("author_id", "repository_id")
 
     return query[:RECENT_RELEASES_LIMIT]
🧰 Tools
🪛 Ruff (0.8.2)

86-86: Trailing whitespace

Remove trailing whitespace

(W291)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fd7f0a1 and ee334f0.

📒 Files selected for processing (1)
  • backend/apps/owasp/graphql/nodes/project.py (2 hunks)
🧰 Additional context used
🧬 Code Definitions (1)
backend/apps/owasp/graphql/nodes/project.py (6)
backend/apps/github/graphql/nodes/issue.py (1) (1)
  • IssueNode (7-20)
backend/apps/github/graphql/nodes/release.py (1) (1)
  • ReleaseNode (11-34)
backend/apps/github/graphql/queries/issue.py (1) (1)
  • resolve_recent_issues (19-26)
backend/apps/github/graphql/queries/release.py (1) (1)
  • resolve_recent_releases (19-30)
backend/apps/github/models/repository.py (1) (1)
  • published_releases (140-146)
backend/apps/owasp/models/project.py (1) (1)
  • published_releases (170-178)
🪛 Ruff (0.8.2)
backend/apps/owasp/graphql/nodes/project.py

62-62: Missing argument descriptions in the docstring for resolve_recent_issues: distinct, info, limit

(D417)


64-64: Blank line contains whitespace

Remove whitespace from blank line

(W293)


65-65: Missing dashed underline after section ("Parameters")

Add dashed line under "Parameters"

(D407)


65-65: Section name should end with a newline ("Parameters")

Add newline after "Parameters"

(D406)


69-69: Blank line contains whitespace

Remove whitespace from blank line

(W293)


70-70: Missing blank line after last section ("Returns")

Add blank line after "Returns"

(D413)


70-70: Missing dashed underline after section ("Returns")

Add dashed line under "Returns"

(D407)


70-70: Section name should end with a newline ("Returns")

Add newline after "Returns"

(D406)


86-86: Trailing whitespace

Remove trailing whitespace

(W291)

🔇 Additional comments (3)
backend/apps/owasp/graphql/nodes/project.py (3)

22-25: Field enhancement with distinct filtering - good implementation.

The distinct argument has been properly added to the GraphQL field definition with an appropriate default value of False, allowing clients to optionally request distinct results while maintaining backward compatibility for existing queries.


26-29: Field enhancement with distinct filtering - good implementation.

Similar to the recent_issues field, the distinct parameter has been properly added to the recent_releases field definition with appropriate default value, maintaining consistent behavior across related fields.


62-88:

❓ Verification inconclusive

Verify consistent implementation across resolvers.

The implementation of distinct filtering looks good, but there's a small inconsistency between the two resolver methods. In resolve_recent_issues the ordering is applied before the distinct filtering, while in resolve_recent_releases it isn't explicitly reapplied in the distinct case.

Run the following script to check how distinct is implemented in similar resolvers:


🏁 Script executed:

#!/bin/bash
# Description: Check implementation of distinct filtering in other resolvers

# Search for distinct implementation patterns in other Python files
echo "Checking how distinct is implemented in other resolvers:"
rg -A 5 -B 5 "distinct\(.*\)" --glob "*.py" 

# Check specifically for any inconsistencies in ordering when using distinct
echo -e "\nChecking for patterns that include both order_by and distinct:"
rg -A 3 -B 3 "order_by.*distinct|distinct.*order_by" --glob "*.py"

Length of output: 4806


Consistent Ordering for Distinct Filtering Required

Both resolver methods in this file currently apply ordering once—prior to checking the distinct flag. In contrast, elsewhere in the codebase (for example, in backend/apps/github/graphql/queries/issue.py) the query is explicitly re-ordered inside the if distinct: block before calling .distinct(...). This discrepancy might affect query behavior under certain database conditions.

  • OWASP Resolvers (project.py):

    • resolve_recent_issues and resolve_recent_releases both call order_by(...) before the conditional distinct filtering.
  • GitHub Resolver (queries/issue.py):

    • The distinct branch re-applies the ordering with query.order_by("author_id", "repository_id", "-created_at").distinct("author_id", "repository_id").

Please verify if the current approach in the OWASP resolvers is intentional. If consistency across resolvers is desired, consider aligning the pattern (by either reordering within the distinct block or confirming that a single ordering call is sufficient).

🧰 Tools
🪛 Ruff (0.8.2)

62-62: Missing argument descriptions in the docstring for resolve_recent_issues: distinct, info, limit

(D417)


64-64: Blank line contains whitespace

Remove whitespace from blank line

(W293)


65-65: Missing dashed underline after section ("Parameters")

Add dashed line under "Parameters"

(D407)


65-65: Section name should end with a newline ("Parameters")

Add newline after "Parameters"

(D406)


69-69: Blank line contains whitespace

Remove whitespace from blank line

(W293)


70-70: Missing blank line after last section ("Returns")

Add blank line after "Returns"

(D413)


70-70: Missing dashed underline after section ("Returns")

Add dashed line under "Returns"

(D407)


70-70: Section name should end with a newline ("Returns")

Add newline after "Returns"

(D406)


86-86: Trailing whitespace

Remove trailing whitespace

(W291)

@arkid15r arkid15r marked this pull request as draft March 22, 2025 19:10
Copy link
Collaborator

@arkid15r arkid15r left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make your code ready for review according to https://github.com/OWASP/Nest/blob/main/CONTRIBUTING.md#code-quality-checks

@rishyym0927
Copy link
Contributor Author

Please make your code ready for review according to https://github.com/OWASP/Nest/blob/main/CONTRIBUTING.md#code-quality-checks

Sure !! I'll test it accordingly !!

@arkid15r
Copy link
Collaborator

Please make your code ready for review according to https://github.com/OWASP/Nest/blob/main/CONTRIBUTING.md#code-quality-checks

Sure !! I'll test it accordingly !!

Any updates on this? The issues' deadline was Mar, 18

@rishyym0927
Copy link
Contributor Author

Please make your code ready for review according to https://github.com/OWASP/Nest/blob/main/CONTRIBUTING.md#code-quality-checks

Sure !! I'll test it accordingly !!

Any updates on this? The issues' deadline was Mar, 18

Yess sorry for the delay !! Im working on its test

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (3)
backend/apps/github/graphql/queries/issue.py (3)

25-27: Line exceeds maximum length and consider adding database compatibility note.

The implementation of distinct filtering looks good functionally, but there are a couple of improvements to consider:

  1. The line exceeds the maximum length of 99 characters (currently 124)
  2. The distinct method with field names is PostgreSQL-specific functionality
if distinct:
-    queryset = queryset.order_by("author_id", "repository_id", "-created_at").distinct("author_id", "repository_id")
+    # Note: distinct on specific fields is PostgreSQL-specific
+    queryset = queryset.order_by(
+        "author_id", "repository_id", "-created_at"
+    ).distinct("author_id", "repository_id")
🧰 Tools
🪛 Ruff (0.8.2)

26-26: Line too long (124 > 99)

(E501)


18-18: Consider enhancing the docstring.

The current docstring "Resolve recent issues" could be enhanced to include information about the new distinct parameter.

def resolve_recent_issues(root, info, limit=15, distinct=False, login=None):
-    """Resolve recent issues."""
+    """
+    Resolve recent issues.
+    
+    Args:
+        limit: Maximum number of issues to return
+        distinct: When True, returns only one issue per author and repository
+        login: Filter issues by author login
+    """

11-16: Consider adding description to the new parameter.

For better GraphQL schema documentation, consider adding a description to the distinct parameter.

recent_issues = graphene.List(
    IssueNode,
    limit=graphene.Int(default_value=15),
-    distinct=graphene.Boolean(default_value=False),
+    distinct=graphene.Boolean(
+        default_value=False,
+        description="When True, returns only one issue per author and repository"
+    ),
    login=graphene.String(required=False),
)
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ee334f0 and eb049e9.

📒 Files selected for processing (3)
  • backend/apps/github/graphql/queries/issue.py (1 hunks)
  • frontend/src/api/queries/homeQueries.ts (3 hunks)
  • frontend/src/pages/Home.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • frontend/src/pages/Home.tsx
  • frontend/src/api/queries/homeQueries.ts
🧰 Additional context used
🪛 Ruff (0.8.2)
backend/apps/github/graphql/queries/issue.py

26-26: Line too long (124 > 99)

(E501)

🔇 Additional comments (2)
backend/apps/github/graphql/queries/issue.py (2)

13-14: LGTM: Default value updated and new parameter added correctly.

The update to the limit default value (from 6 to 15) and the addition of the new distinct parameter with the appropriate default value is implemented correctly. This aligns with the PR objectives to support distinct filtering.


18-18: Function signature properly updated.

The resolver function signature has been appropriately updated to match the new parameter in the GraphQL field definition.

@arkid15r arkid15r marked this pull request as ready for review March 29, 2025 02:07
@arkid15r arkid15r merged commit 574ad15 into OWASP:main Mar 29, 2025
7 checks passed
Rajgupta36 pushed a commit to Rajgupta36/Nest-n that referenced this pull request Mar 30, 2025
…d Releases (OWASP#1154)

* recent release fix

* Recent Release Fix

* Update backend/apps/owasp/graphql/nodes/project.py

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* Updated

* Update code

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Arkadii Yakovets <[email protected]>
Co-authored-by: Arkadii Yakovets <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Improve main page recent issues/releases sections
2 participants