Skip to content

Commit

Permalink
Fix get call of team_repository table (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdatasourav authored Nov 16, 2023
1 parent 0951f80 commit 6a755f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion github/table_github_team_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package github

import (
"context"
"strings"

"github.com/shurcooL/githubv4"
"github.com/turbot/steampipe-plugin-github/github/models"
"strings"

"github.com/turbot/steampipe-plugin-sdk/v5/grpc/proto"
"github.com/turbot/steampipe-plugin-sdk/v5/plugin"
Expand Down Expand Up @@ -126,6 +127,7 @@ func tableGitHubTeamRepositoryGet(ctx context.Context, d *plugin.QueryData, h *p
"name": githubv4.String(name),
"pageSize": githubv4.Int(1),
}
appendRepoColumnIncludes(&variables, d.QueryContext.Columns)

client := connectV4(ctx, d)
err := client.Query(ctx, &query, variables)
Expand Down

0 comments on commit 6a755f5

Please sign in to comment.