mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
8 lines
139 B
JavaScript
8 lines
139 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const deletePendingCreation = gql`
|
|
mutation ($id: Int!) {
|
|
deletePendingCreation(id: $id)
|
|
}
|
|
`
|