feat: add mutation and mutation builder with example

This commit is contained in:
Kingkor Roy Tirtho
2023-02-23 10:58:31 +06:00
parent 83df0ba576
commit 6a90f847c9
14 changed files with 688 additions and 45 deletions
@@ -20,6 +20,10 @@ class HomePage extends StatelessWidget {
title: const Text('Infinite Query'),
onTap: () => GoRouter.of(context).push('/infinite-query'),
),
ListTile(
title: const Text('Mutation'),
onTap: () => GoRouter.of(context).push('/mutation'),
),
],
),
);