Skip to content

Commit

Permalink
Merge pull request #171 from uselagoon/ui_group_org_update
Browse files Browse the repository at this point in the history
Change: Updated addGroupToOrganization mutation to reflect api changes
  • Loading branch information
tobybellwood authored Oct 11, 2023
2 parents 635ebef + 162b56a commit a9b9f2b
Showing 1 changed file with 2 additions and 2 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

0 comments on commit a9b9f2b

Please sign in to comment.