Skip to content

Commit

Permalink
DEVPROD-5460: Remove id argument from repo queries (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
minnakt authored Apr 4, 2024
1 parent f99fbf4 commit c287f5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/spruce/src/gql/queries/repo-event-logs.graphql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import "../fragments/projectSettings/projectEventSettings.graphql"

query RepoEventLogs($id: String!, $limit: Int, $before: Time) {
repoEvents(id: $id, repoId: $id, limit: $limit, before: $before) {
repoEvents(repoId: $id, limit: $limit, before: $before) {
count
eventLogEntries {
after {
Expand Down
2 changes: 1 addition & 1 deletion apps/spruce/src/gql/queries/repo-settings.graphql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import "../fragments/projectSettings/index.graphql"

query RepoSettings($repoId: String!) {
repoSettings(id: $repoId, repoId: $repoId) {
repoSettings(repoId: $repoId) {
...RepoSettingsFields
}
}

0 comments on commit c287f5d

Please sign in to comment.