Skip to content

Commit

Permalink
Updated addGroupToOrganization resolver to reflect api changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CGoodwin90 committed Oct 10, 2023
1 parent 6e26439 commit 5be2d16
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 5be2d16

Please sign in to comment.