Lambda-School-Labs/designhub-fe

View on GitHub
src/graphql/mutations/projects/deleteProject.js

Summary

Maintainability
A
0 mins
Test Coverage
import gql from 'graphql-tag';

const DELETE_PROJECT_MUTATION = gql`
  mutation deleteProject($id: ID!) {
    deleteProject(id: $id)
  }
`;
export default DELETE_PROJECT_MUTATION;