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;