Skip to content

Commit

Permalink
Merge branch 'main' into task-cancellations
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Oct 11, 2023
2 parents 3807c91 + a9b9f2b commit dd4b7a9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/components/Organizations/NewGroup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import styled from 'styled-components';
import { Footer, StyledNotification } from '../SharedStyles';

const ADD_GROUP_MUTATION = gql`
mutation addGroup($group: String!, $organization: Int!) {
addGroup(input: { name: $group, organization: $organization }) {
mutation addGroupToOrganization($group: String!, $organization: Int!) {
addGroupToOrganization(input: { name: $group, organization: $organization }) {
name
}
}
Expand Down
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 dd4b7a9

Please sign in to comment.