Mutations#
Mutations methods are exposed in a straightforward way from the generated KitQL client. Check 👇
<script lang="ts">
// import { KQL_AddStar } from '$lib/graphql/_kitql/graphqlStores';
async function add(id: string) {
const result = await KQL_AddStar.mutate({ variables: { id } })
}
</script>