Skip to content

Commit

Permalink
Merge branch 'main' into ui_group_org_update
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Oct 11, 2023
2 parents 5be2d16 + 635ebef commit 162b56a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/query/organizations/GroupByNameAndOrganization.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default gql`
}
}
organization: organizationById (organization: $organization){
organization: organizationById (id: $organization){
id
name
description
Expand Down
2 changes: 1 addition & 1 deletion src/lib/query/organizations/OrganizationByID.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import WebhookFragment from 'lib/fragment/Webhook';

export default gql`
query getOrganization($id: Int!) {
organization: organizationById(organization: $id) {
organization: organizationById(id: $id) {
id
name
description
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import WebhookFragment from 'lib/fragment/Webhook';

export default gql`
query getNotifications($id: Int!){
organization: organizationById (organization: $id){
organization: organizationById (id: $id){
id
name
description
Expand Down
2 changes: 1 addition & 1 deletion src/lib/query/organizations/ProjectAndOrganizationByID.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default gql`
}
}
organization: organizationById (organization: $id){
organization: organizationById (id: $id){
id
name
quotaGroup
Expand Down
2 changes: 1 addition & 1 deletion src/lib/query/organizations/UsersByOrganization.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default gql`

export const getOrganization = gql`
query getOrganization($id: Int!) {
organization: organizationById(organization: $id) {
organization: organizationById(id: $id) {
id
name
groups{
Expand Down

0 comments on commit 162b56a

Please sign in to comment.