13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
import { gql } from "@urql/core";
|
|
|
|
const increment = gql`
|
|
mutation increment($command: Boolean, $link: Boolean, $trigger: Boolean) {
|
|
increment(command: $command, link: $link, trigger: $trigger) {
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default increment;
|